Update api/src/main/java/org/apache/cloudstack/api/command/admin/backup/UpdateBackupOfferingCmd.java

Co-authored-by: dahn <daan@onecht.net>
This commit is contained in:
Pearl Dsilva 2026-02-05 14:09:18 -05:00 committed by GitHub
parent d03a845762
commit 0d1174e3b9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -84,7 +84,7 @@ public class UpdateBackupOfferingCmd extends BaseCmd {
try {
if (StringUtils.isAllEmpty(getName(), getDescription()) && getAllowUserDrivenBackups() == null) {
throw new InvalidParameterValueException(String.format("Can't update Backup Offering [id: %s] because there are no parameters to be updated," +
" at least one of the following should be informed: name, description or allowUserDrivenBackups.", id));
" at least one of the following should be passed: name, description or allowUserDrivenBackups.", id));
}
BackupOffering result = backupManager.updateBackupOffering(this);