Copilot commented on code in PR #11666:
URL: https://github.com/apache/cloudstack/pull/11666#discussion_r2357796452


##########
engine/components-api/src/main/java/com/cloud/storage/StorageManager.java:
##########
@@ -182,7 +182,7 @@ public interface StorageManager extends StorageService {
     ConfigKey<Boolean> MountDisabledStoragePool = new 
ConfigKey<>(Boolean.class,
             "mount.disabled.storage.pool",
             "Storage",
-            "false",
+            Boolean.TRUE.toString(),

Review Comment:
   [nitpick] Using `Boolean.TRUE.toString()` is unnecessarily complex for a 
string literal. Consider using the simpler string literal `\"true\"` for 
consistency with the previous `\"false\"` value.
   ```suggestion
               "true",
   ```



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@cloudstack.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to