Merge pull request #6626 from allenxu404/modify-output

Modify output for command of `restore delete`
This commit is contained in:
qiuming
2023-08-09 17:32:39 +08:00
committed by GitHub
+1 -1
View File
@@ -123,7 +123,7 @@ func Run(o *cli.DeleteOptions) error {
errs = append(errs, errors.WithStack(err))
continue
}
fmt.Printf("Restore %q deleted\n", r.Name)
fmt.Printf("Request to delete restore %q submitted successfully.\nThe restore will be fully deleted after all associated data (restore files in object storage) are removed.\n", r.Name)
}
return kubeerrs.NewAggregate(errs)
}