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
186
// 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...)")
187
+
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
188
ifstrings.Contains(match, "Unable to start the workspace due to conflict, the workspace may be starting, retrying without autostart...") {
199
189
foundConflict++
200
190
// It should retry without autostart.
201
-
proc.pty.ExpectMatchContext(ctx, "Waiting for the workspace agent to connect")
191
+
pty.ExpectMatchContext(ctx, "Waiting for the workspace agent to connect")
0 commit comments