We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7dba913 commit 9f518afCopy full SHA for 9f518af
cmd/pro/provider/up.go
@@ -335,6 +335,11 @@ func getParametersFromEnvironment(ctx context.Context, kubeClient kube.Interface
335
}
336
337
func isReady(workspace *managementv1.DevPodWorkspaceInstance) bool {
338
+ // Sleeping is considered ready in this context. The workspace will be woken up as soon as we connect to it
339
+ if workspace.Status.Phase == storagev1.InstanceSleeping {
340
+ return true
341
+ }
342
+
343
return workspace.Status.Phase == storagev1.InstanceReady
344
345
0 commit comments