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 5b6c63d commit bf06755Copy full SHA for bf06755
components/local-app/cmd/workspace-create.go
@@ -101,6 +101,11 @@ var workspaceCreateCmd = &cobra.Command{
101
},
102
WorkspaceClass: workspaceCreateOpts.WorkspaceClass,
103
104
+ // Without this flag we might not create a new workspce because there's already one running on the same commit.
105
+ IgnoreRunningWorkspaceOnSameCommit: true,
106
+ // Note(cw): the CLI cannot handle running prebuilds yet, so we ignore them for now.
107
+ IgnoreRunningPrebuild: true,
108
+ AllowUsingPreviousPrebuilds: true,
109
110
))
111
if err != nil {
0 commit comments