Skip to content

Commit 8d276c0

Browse files
GaOrtigaGabriel Ortiga Fernandes
andauthored
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 <gabriel.fernandes@scclouds.com.br>
1 parent d6044fb commit 8d276c0

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

engine/schema/src/main/resources/META-INF/db/schema-41710to41800.sql

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -581,3 +581,8 @@ UPDATE cloud.configuration
581581
SET description = 'Comma separated list of email addresses which are going to receive alert emails.'
582582
WHERE name = 'alert.email.addresses';
583583

584+
-- Improve description of configuration `secstorage.encrypt.copy` #6811.
585+
UPDATE cloud.configuration
586+
SET description = "Use SSL method used to encrypt copy traffic between zones. Also ensures that the certificate assigned to the zone is used when
587+
generating links for external access."
588+
WHERE name = 'secstorage.encrypt.copy';

server/src/main/java/com/cloud/configuration/Config.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -689,7 +689,7 @@ public enum Config {
689689
Boolean.class,
690690
"secstorage.encrypt.copy",
691691
"false",
692-
"Use SSL method used to encrypt copy traffic between zones",
692+
"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.",
693693
"true,false"),
694694
SecStorageSecureCopyCert(
695695
"Advanced",

0 commit comments

Comments
 (0)