fix(stack): show correct error message (#4853)

This commit is contained in:
Chaim Lev-Ari
2021-02-16 23:37:27 +02:00
committed by GitHub
parent aa25eac951
commit 9bef81eef6

View File

@@ -64,7 +64,7 @@ func (handler *Handler) stackStart(w http.ResponseWriter, r *http.Request) *http
err = handler.startStack(stack, endpoint)
if err != nil {
return &httperror.HandlerError{http.StatusInternalServerError, "Unable to stop stack", err}
return &httperror.HandlerError{http.StatusInternalServerError, "Unable to start stack", err}
}
stack.Status = portainer.StackStatusActive