mirror of https://github.com/apache/cloudstack.git
Corrected the error message in egress rule add command
This commit is contained in:
parent
8b2efee61c
commit
60fb60a911
|
|
@ -242,7 +242,7 @@ public class CreateEgressFirewallRuleCmd extends BaseAsyncCreateCmd implements F
|
|||
continue;
|
||||
}
|
||||
if (!NetUtils.isNetworkAWithinNetworkB(cidr, guestCidr)) {
|
||||
throw new ServerApiException(ApiErrorCode.PARAM_ERROR, cidr + "is not within the guest cidr " + guestCidr);
|
||||
throw new ServerApiException(ApiErrorCode.PARAM_ERROR, cidr + " is not within the guest cidr " + guestCidr);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue