You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Reject with an error if an action is configured, but the filter failed
228
+
// to show up in the output before the timeout occurred.
229
+
setTimeout(
230
+
()=>{
231
+
if(!actionExecuted){
232
+
reject(newError(`Timed out waiting for filter ${JSON.stringify(filter)} to appear in command output after ${actionTimeoutSeconds} seconds\nOutput so far:\n${Buffer.concat(out).toString('utf-8')}`));
0 commit comments