remove redundant lines of code, fix response when output is not plain text

This commit is contained in:
Igor Perepilitsyn 2022-05-02 14:00:00 +04:00
parent 6ba68d150c
commit 12d8f0f4b0

View file

@ -381,28 +381,7 @@ var moveNodeCmd = &cobra.Command{
return return
} }
if output != "" { SuccessOutput(moveResponse.Machine, "Node moved to another namespace", output)
SuccessOutput(moveResponse, "", output)
return
}
if err != nil {
ErrorOutput(
err,
fmt.Sprintf(
"Error moving node: %s",
status.Convert(err).Message(),
),
output,
)
return
}
SuccessOutput(
map[string]string{"Result": "Node moved to another namespace"},
"Node moved to another namespace",
output,
)
}, },
} }