From 60fb60a91107f2a1ea55a4b39634bbe0ca059fad Mon Sep 17 00:00:00 2001 From: Damodar Date: Mon, 21 Jul 2014 09:31:15 +0530 Subject: [PATCH] Corrected the error message in egress rule add command --- .../api/command/user/firewall/CreateEgressFirewallRuleCmd.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/src/org/apache/cloudstack/api/command/user/firewall/CreateEgressFirewallRuleCmd.java b/api/src/org/apache/cloudstack/api/command/user/firewall/CreateEgressFirewallRuleCmd.java index 90aed5e507d..1a0cfaed605 100644 --- a/api/src/org/apache/cloudstack/api/command/user/firewall/CreateEgressFirewallRuleCmd.java +++ b/api/src/org/apache/cloudstack/api/command/user/firewall/CreateEgressFirewallRuleCmd.java @@ -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); } } }