diff --git a/.gitignore b/.gitignore index 22dbebd779..f1d443d279 100644 --- a/.gitignore +++ b/.gitignore @@ -4,3 +4,5 @@ bin/ help-cmdexecutor.1 help.1 coverage.txt +.idea + diff --git a/pkg/applicationmanager/controllers/applicationrestore.go b/pkg/applicationmanager/controllers/applicationrestore.go index c79785cb02..a3d25d6750 100644 --- a/pkg/applicationmanager/controllers/applicationrestore.go +++ b/pkg/applicationmanager/controllers/applicationrestore.go @@ -1964,7 +1964,7 @@ func (a *ApplicationRestoreController) restoreResources( for _, resource := range restore.Status.Resources { if resource.Status != storkapi.ApplicationRestoreStatusSuccessful { restore.Status.Status = storkapi.ApplicationRestoreStatusPartialSuccess - restore.Status.Reason = "Volumes were restored successfully. Some existing resources were not replaced" + restore.Status.Reason = fmt.Sprintf("Volumes were restored successfully. Some existing resources were not replaced, resource: %s", resource.Name) break } }