You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cloudstack.apache.org by ja...@apache.org on 2014/05/07 07:18:14 UTC

git commit: updated refs/heads/4.4-forward to 3ec8de9

Repository: cloudstack
Updated Branches:
  refs/heads/4.4-forward 43f9baf4e -> 3ec8de9b8


CLOUDSTACK-6582 updated the table network_acl_item_cidrs name in Upgrade430to440


Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo
Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/3ec8de9b
Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/3ec8de9b
Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/3ec8de9b

Branch: refs/heads/4.4-forward
Commit: 3ec8de9b85c03a79ac87ee0732c629ee621a8cbc
Parents: 43f9baf
Author: Jayapal <ja...@apache.org>
Authored: Wed May 7 10:45:45 2014 +0530
Committer: Jayapal <ja...@apache.org>
Committed: Wed May 7 10:45:45 2014 +0530

----------------------------------------------------------------------
 engine/schema/src/com/cloud/upgrade/dao/Upgrade430to440.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cloudstack/blob/3ec8de9b/engine/schema/src/com/cloud/upgrade/dao/Upgrade430to440.java
----------------------------------------------------------------------
diff --git a/engine/schema/src/com/cloud/upgrade/dao/Upgrade430to440.java b/engine/schema/src/com/cloud/upgrade/dao/Upgrade430to440.java
index 7406c1e..26277dd 100644
--- a/engine/schema/src/com/cloud/upgrade/dao/Upgrade430to440.java
+++ b/engine/schema/src/com/cloud/upgrade/dao/Upgrade430to440.java
@@ -266,7 +266,7 @@ public class Upgrade430to440 implements DbUpgrade {
                 // split it
                 String[] cidrArray = cidrList.split(",");
                 // insert a record per cidr
-                String networkAclItemCidrSql = "INSERT INTO `cloud`.`network_acl_item_cidr` (network_acl_item_id, cidr) VALUES (?,?)";
+                String networkAclItemCidrSql = "INSERT INTO `cloud`.`network_acl_item_cidrs` (network_acl_item_id, cidr) VALUES (?,?)";
                 for(String cidr: cidrArray)
                 {
                     pstmtCidr = conn.prepareStatement(networkAclItemCidrSql);