Skip to content
This repository has been archived by the owner on Mar 4, 2024. It is now read-only.

Commit

Permalink
EVEREST-664 Improve error message (#380)
Browse files Browse the repository at this point in the history
  • Loading branch information
recharte authored Jan 3, 2024
1 parent 9ac7e37 commit 3828a83
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/database_cluster_restore.go
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ func (e *EverestServer) CreateDatabaseClusterRestore(ctx echo.Context) error {
if dbCluster.Status.Status == everestv1alpha1.AppStateRestoring {
e.l.Error("failed creating restore because another one is in progress")
return ctx.JSON(http.StatusBadRequest, Error{
Message: pointer.ToString("Another restore is in progress"),
Message: pointer.ToString("Another restore process for this DB cluster is currently in progress. Wait for its completion before initiating another."),
})
}

Expand Down

0 comments on commit 3828a83

Please sign in to comment.