rafaelweingartner commented on a change in pull request #2508: CLOUDSTACK-9114:
Reduce VR downtime during network restart
URL: https://github.com/apache/cloudstack/pull/2508#discussion_r186696727
##########
File path:
api/src/org/apache/cloudstack/api/command/user/vpc/RestartVPCCmd.java
##########
@@ -66,14 +66,14 @@ public Boolean getCleanup() {
if (cleanup != null) {
return cleanup;
}
- return true;
+ return false;
}
public Boolean getMakeredundant() {
if (makeredundant != null) {
Review comment:
Is there is a default value, why not use a primitive value with a default of
`false`? Then, you do not need these logics in a POJO get method.
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services