DaanHoogland commented on code in PR #6496:
URL: https://github.com/apache/cloudstack/pull/6496#discussion_r908602892
##########
api/src/main/java/com/cloud/user/ResourceLimitService.java:
##########
@@ -27,6 +27,10 @@
public interface ResourceLimitService {
+ static final ConfigKey<Long> MaxAccountSecondaryStorage = new
ConfigKey<Long>("Account Defaults", Long.class,
"max.account.secondary.storage", "400",
Review Comment:
```suggestion
static final ConfigKey<Long> MaxAccountSecondaryStorage = new
ConfigKey<>("Account Defaults", Long.class, "max.account.secondary.storage",
"400",
```
##########
api/src/main/java/com/cloud/user/ResourceLimitService.java:
##########
@@ -27,6 +27,10 @@
public interface ResourceLimitService {
+ static final ConfigKey<Long> MaxAccountSecondaryStorage = new
ConfigKey<Long>("Account Defaults", Long.class,
"max.account.secondary.storage", "400",
+ "The default maximum secondary storage space (in GiB) that can be
used for an account", false);
+ static final ConfigKey<Long> MaxProjectSecondaryStorage = new
ConfigKey<Long>("Project Defaults", Long.class,
"max.project.secondary.storage", "400",
Review Comment:
```suggestion
static final ConfigKey<Long> MaxProjectSecondaryStorage = new
ConfigKey<>("Project Defaults", Long.class, "max.project.secondary.storage",
"400",
```
--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]