We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 830044d commit 0c83842Copy full SHA for 0c83842
1 file changed
api/src/main/java/org/apache/cloudstack/api/command/admin/config/UpdateCfgCmd.java
@@ -33,6 +33,7 @@
33
import org.apache.cloudstack.api.response.StoragePoolResponse;
34
import org.apache.cloudstack.api.response.ZoneResponse;
35
import org.apache.cloudstack.config.Configuration;
36
+import org.apache.cloudstack.framework.config.ConfigKey;
37
import org.apache.commons.lang3.StringUtils;
38
39
import com.cloud.user.Account;
@@ -203,6 +204,9 @@ public ConfigurationResponse setResponseScopes(ConfigurationResponse response) {
203
204
if (getDomainId() != null) {
205
response.setScope("domain");
206
}
207
+ if (getManagementServerId() != null) {
208
+ response.setScope(ConfigKey.Scope.ManagementServer.name().toLowerCase());
209
+ }
210
return response;
211
212
0 commit comments