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

pull/4789/head
Chaim Lev-Ari 2021-02-16 23:37:27 +02:00 committed by GitHub
parent aa25eac951
commit 9bef81eef6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

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