You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@cloudstack.apache.org by ustcweizhou <gi...@git.apache.org> on 2016/11/25 07:16:07 UTC

[GitHub] cloudstack issue #1781: CLOUDSTACK-9612: Fixed issue in restarting redundant...

Github user ustcweizhou commented on the issue:

    https://github.com/apache/cloudstack/pull/1781
  
    @jayapalu we had the same issue before. we changed the code in line 634 from setIsReduntant to setIsRedundant to fix it.
    
    ```
    diff --git a/engine/schema/src/com/cloud/network/dao/NetworkVO.java b/engine/schema/src/com/cloud/network/dao/NetworkVO.java
    index 65929d5..342aae3 100644
    --- a/engine/schema/src/com/cloud/network/dao/NetworkVO.java
    +++ b/engine/schema/src/com/cloud/network/dao/NetworkVO.java
    @@ -620,8 +620,8 @@ public class NetworkVO implements Network {
             this.vpcId = vpcId;
         }
    
    -    public void setIsReduntant(boolean reduntant) {
    -        this.isRedundant = reduntant;
    +    public void setIsRedundant(boolean redundant) {
    +        this.isRedundant = redundant;
         }
    
     }
    ```


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---