diff --git a/server/src/com/cloud/upgrade/dao/Upgrade229to2210.java b/server/src/com/cloud/upgrade/dao/Upgrade229to2210.java index 40e1fca18d7..2b985fb0aa8 100644 --- a/server/src/com/cloud/upgrade/dao/Upgrade229to2210.java +++ b/server/src/com/cloud/upgrade/dao/Upgrade229to2210.java @@ -116,7 +116,7 @@ public class Upgrade229to2210 implements DbUpgrade { if (rs1.next()) { firewallRuleId = rs1.getLong(1); } else { - throw new CloudRuntimeException("Unable to find just inserted firewall rule for ptocol " + protocol + ", start_port " + startPort + " and end_port " + endPort); + throw new CloudRuntimeException("Unable to find just inserted firewall rule for ptocol " + protocol + ", start_port " + startPort + " and end_port " + endPort + " and ip address id=" + ipId); } pstmt = conn.prepareStatement("select id from firewall_rules_cidrs where firewall_rule_id=?");