Skip to content

Commit 4ce5a3b

Browse files
committed
update migrate not found bug
1 parent d96032b commit 4ce5a3b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

pkg/paas/migration.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ func NewCmdMigrate(in io.Reader, out, errout io.Writer) *cobra.Command {
129129
}
130130
}
131131

132-
if response.State == Completed || response.State == Failed {
132+
if response.State == Completed || response.State == Failed || response.StatusCode == http.StatusNotFound {
133133
project, err := getSelectedProject(in, explainOut)
134134
if err != nil {
135135
failureOutput(err.Error())

0 commit comments

Comments
 (0)