Repository: cloudstack
Updated Branches:
  refs/heads/4.3 45deade1d -> e4ae5b20f


CLOUDSTACK-7193: handle domain ID being an int

Recent versions of libvirt (at least 0.9.8) will return an int when
queried for the ID of a domain, not a string. This breaks some parts of
the `security_group.py` script which expects a string containing an
int. Notably, this breaks the part handling VM reboots which is
therefore not executed.

Signed-off-by: Vincent Bernat <vincent.ber...@exoscale.ch>
Signed-off-by: Sebastien Goasguen <run...@gmail.com>


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

Branch: refs/heads/4.3
Commit: e4ae5b20fb015bba6e77d82c2c585ff520d3efdf
Parents: 45deade
Author: Vincent Bernat <vincent.ber...@exoscale.ch>
Authored: Mon Jul 28 18:03:32 2014 +0200
Committer: Sebastien Goasguen <run...@gmail.com>
Committed: Mon Aug 18 10:39:00 2014 -0400

----------------------------------------------------------------------
 scripts/vm/network/security_group.py | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cloudstack/blob/e4ae5b20/scripts/vm/network/security_group.py
----------------------------------------------------------------------
diff --git a/scripts/vm/network/security_group.py 
b/scripts/vm/network/security_group.py
index 3f4c51a..134a126 100755
--- a/scripts/vm/network/security_group.py
+++ b/scripts/vm/network/security_group.py
@@ -944,7 +944,10 @@ def getvmId(vmName):
 
     conn.close()
 
-    return dom.ID()
+    res = dom.ID()
+    if isinstance(res, int):
+        res = str(res)
+    return res
 
 def getBrfw(brname):
     cmd = "iptables-save |grep physdev-is-bridged |grep FORWARD |grep BF |grep 
'\-o' | grep -w " + brname  + "|awk '{print $9}' | head -1"

Reply via email to