Skip to content

Commit 60fb60a

Browse files
Damodarsedukull
authored andcommitted
Corrected the error message in egress rule add command
1 parent 8b2efee commit 60fb60a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

api/src/org/apache/cloudstack/api/command/user/firewall/CreateEgressFirewallRuleCmd.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,7 @@ public void create() {
242242
continue;
243243
}
244244
if (!NetUtils.isNetworkAWithinNetworkB(cidr, guestCidr)) {
245-
throw new ServerApiException(ApiErrorCode.PARAM_ERROR, cidr + "is not within the guest cidr " + guestCidr);
245+
throw new ServerApiException(ApiErrorCode.PARAM_ERROR, cidr + " is not within the guest cidr " + guestCidr);
246246
}
247247
}
248248
}

0 commit comments

Comments
 (0)