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
// Either allow the command to start the workspace or fail
196
191
// due to conflict (race), in which case it retries.
197
-
match:=proc.pty.ExpectRegexMatchContext(ctx, "(Waiting for the workspace agent to connect|Unable to start the workspace due to conflict, the workspace may be starting, retrying without autostart...)")
192
+
match:=pty.ExpectRegexMatchContext(ctx, "(Waiting for the workspace agent to connect|Unable to start the workspace due to conflict, the workspace may be starting, retrying without autostart...)")
198
193
ifstrings.Contains(match, "Unable to start the workspace due to conflict, the workspace may be starting, retrying without autostart...") {
199
194
foundConflict++
200
195
// It should retry without autostart.
201
-
proc.pty.ExpectMatchContext(ctx, "Waiting for the workspace agent to connect")
196
+
pty.ExpectMatchContext(ctx, "Waiting for the workspace agent to connect")
0 commit comments