Skip to content

Commit fc9404e

Browse files
Updated scope to Zone for the new powerflex settings
1 parent 2a78099 commit fc9404e

File tree

1 file changed

+6
-3
lines changed
  • plugins/storage/volume/scaleio/src/main/java/org/apache/cloudstack/storage/datastore/manager

1 file changed

+6
-3
lines changed

plugins/storage/volume/scaleio/src/main/java/org/apache/cloudstack/storage/datastore/manager/ScaleIOSDCManager.java

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,21 +41,24 @@ public interface ScaleIOSDCManager {
4141
"powerflex.mdm.change.apply.timeout.ms",
4242
"1000",
4343
"Timeout (in ms) for Host to wait after MDM changes made on Host until changes will be applied, default value: 1000 ms",
44-
Boolean.TRUE);
44+
Boolean.TRUE,
45+
ConfigKey.Scope.Zone);
4546

4647
ConfigKey<Boolean> ValidateMdmsOnConnect = new ConfigKey<>("Storage",
4748
Boolean.class,
4849
"powerflex.mdm.validate.on.connect",
4950
Boolean.FALSE.toString(),
5051
"Flag to validate MDMs on Host, present in configuration file and in CLI, default value: false",
51-
Boolean.TRUE);
52+
Boolean.TRUE,
53+
ConfigKey.Scope.Zone);
5254

5355
ConfigKey<Boolean> BlockSdcUnprepareIfRestartNeededAndVolumesAreAttached = new ConfigKey<>("Storage",
5456
Boolean.class,
5557
"powerflex.block.sdc.unprepare",
5658
Boolean.FALSE.toString(),
5759
"Block Storage Client un-preparation if SDC service restart needed but there are Volumes attached to the Host",
58-
Boolean.TRUE);
60+
Boolean.TRUE,
61+
ConfigKey.Scope.Zone);
5962

6063
/**
6164
* Checks SDC connections limit.

0 commit comments

Comments
 (0)