You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cloudstack.apache.org by da...@apache.org on 2022/09/24 18:27:42 UTC

[cloudstack] branch main updated: fix description of configuration `max.data.migration.wait.time` (#6749)

This is an automated email from the ASF dual-hosted git repository.

dahn pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/cloudstack.git


The following commit(s) were added to refs/heads/main by this push:
     new 3889e46eb63 fix description of configuration `max.data.migration.wait.time` (#6749)
3889e46eb63 is described below

commit 3889e46eb6322ba711946a227d351e353cffb5ce
Author: GaOrtiga <49...@users.noreply.github.com>
AuthorDate: Sat Sep 24 15:27:34 2022 -0300

    fix description of configuration `max.data.migration.wait.time` (#6749)
    
    Co-authored-by: Gabriel Ortiga Fernandes <ga...@scclouds.com.br>
---
 .../components-api/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<Integer> MaxDataMigrationWaitTime = new ConfigKey<Integer>("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<Boolean> DiskProvisioningStrictness = new ConfigKey<Boolean>("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.",