Skip to content

Commit 1c32efc

Browse files
committed
expose.kvm.backup.export.service.apis config should be non-dynamic
1 parent d8dd107 commit 1c32efc

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

api/src/main/java/org/apache/cloudstack/backup/KVMBackupExportService.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,8 @@ public interface KVMBackupExportService extends Configurable, PluggableService {
4747
ConfigKey<Boolean> ExposeKVMBackupExportServiceApis = new ConfigKey<>("Advanced", Boolean.class,
4848
"expose.kvm.backup.export.service.apis",
4949
"false",
50-
"Enable to expose APIs for testing the KVM Backup Export Service.", true, ConfigKey.Scope.Global);
50+
"Enable to expose APIs for testing the KVM Backup Export Service.",
51+
false, ConfigKey.Scope.Global);
5152
/**
5253
* Creates a backup session for a VM
5354
*/

server/src/main/java/org/apache/cloudstack/backup/KVMBackupExportServiceImpl.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ private void verifyKVMBackupExportServiceSupported(Long zoneId) {
144144
!StringUtils.equals("veeam", BackupProviderPlugin.valueIn(zoneId))) {
145145
throw new CloudRuntimeException("Veeam-KVM backups are disabled because the CloudStack Zone is configured to use the \"" +
146146
BackupProviderPlugin.valueIn(zoneId) + "\" backup provider. Acceptable \"backup.framework.provider.plugin\" " +
147-
"values are [\"veeam\", \"dummy\"]. Refer to documentation for more details on backup providers compatibility.");
147+
"values are [\"veeam\", \"dummy\"]. Please refer to the documentation for more details on backup providers compatibility.");
148148
}
149149
}
150150

0 commit comments

Comments
 (0)