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

rohit 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 8d276c02206 Improve description of `secstorage.encrypt.copy` (#6811)
8d276c02206 is described below

commit 8d276c02206f42da361f24b3bbc4b31dfb706f54
Author: GaOrtiga <[email protected]>
AuthorDate: Tue Oct 11 12:46:36 2022 -0300

    Improve description of `secstorage.encrypt.copy` (#6811)
    
    The description of the configuration secstorage.encrypt.copy fails to 
mention that it is also used to make sure the certificate assigned to the zone 
is used when creating links for external access (download/upload of 
disks,templates and ISOs). This PR improves this description.
    
    Co-authored-by: Gabriel Ortiga Fernandes <[email protected]>
---
 engine/schema/src/main/resources/META-INF/db/schema-41710to41800.sql | 5 +++++
 server/src/main/java/com/cloud/configuration/Config.java             | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

diff --git 
a/engine/schema/src/main/resources/META-INF/db/schema-41710to41800.sql 
b/engine/schema/src/main/resources/META-INF/db/schema-41710to41800.sql
index 7aeee1aa22c..89e1cb41a58 100644
--- a/engine/schema/src/main/resources/META-INF/db/schema-41710to41800.sql
+++ b/engine/schema/src/main/resources/META-INF/db/schema-41710to41800.sql
@@ -581,3 +581,8 @@ UPDATE  cloud.configuration
 SET     description = 'Comma separated list of email addresses which are going 
to receive alert emails.'
 WHERE   name = 'alert.email.addresses';
 
+-- Improve description of configuration `secstorage.encrypt.copy` #6811.
+UPDATE  cloud.configuration
+SET     description = "Use SSL method used to encrypt copy traffic between 
zones. Also ensures that the certificate assigned to the zone is used when
+generating links for external access."
+WHERE   name = 'secstorage.encrypt.copy';
diff --git a/server/src/main/java/com/cloud/configuration/Config.java 
b/server/src/main/java/com/cloud/configuration/Config.java
index cb2c673aafb..3203da367ec 100644
--- a/server/src/main/java/com/cloud/configuration/Config.java
+++ b/server/src/main/java/com/cloud/configuration/Config.java
@@ -689,7 +689,7 @@ public enum Config {
             Boolean.class,
             "secstorage.encrypt.copy",
             "false",
-            "Use SSL method used to encrypt copy traffic between zones",
+            "Use SSL method used to encrypt copy traffic between zones. Also 
ensures that the certificate assigned to the zone is used when generating links 
for external access.",
             "true,false"),
     SecStorageSecureCopyCert(
             "Advanced",

Reply via email to