From 3889e46eb6322ba711946a227d351e353cffb5ce Mon Sep 17 00:00:00 2001 From: GaOrtiga <49285692+GaOrtiga@users.noreply.github.com> Date: Sat, 24 Sep 2022 15:27:34 -0300 Subject: [PATCH] fix description of configuration `max.data.migration.wait.time` (#6749) Co-authored-by: Gabriel Ortiga Fernandes --- .../src/main/java/com/cloud/storage/StorageManager.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engine/components-api/src/main/java/com/cloud/storage/StorageManager.java b/engine/components-api/src/main/java/com/cloud/storage/StorageManager.java index 130b1607764..b256d8fb86e 100644 --- a/engine/components-api/src/main/java/com/cloud/storage/StorageManager.java +++ b/engine/components-api/src/main/java/com/cloud/storage/StorageManager.java @@ -147,7 +147,7 @@ public interface StorageManager extends StorageService { "Setting this to 'true' will auto scale down SSVMs", true, ConfigKey.Scope.Global); ConfigKey MaxDataMigrationWaitTime = new ConfigKey("Advanced", Integer.class, "max.data.migration.wait.time", "15", - "Maximum wait time for a data migration task before spawning a new SSVM", false, ConfigKey.Scope.Global); + "Maximum wait time (in minutes) for a data migration task before spawning a new SSVM", false, ConfigKey.Scope.Global); ConfigKey DiskProvisioningStrictness = new ConfigKey("Storage", Boolean.class, "disk.provisioning.type.strictness", "false", "If set to true, the disk is created only when there is a suitable storage pool that supports the disk provisioning type specified by the service/disk offering. " + "If set to false, the disk is created with a disk provisioning type supported by the pool. Default value is false, and this is currently supported for VMware only.",