]> git-server-git.apps.pok.os.sepia.ceph.com Git - teuthology.git/commitdiff
Fix undefined symbol errors 55/head
authorJosh Durgin <josh.durgin@inktank.com>
Tue, 27 Aug 2013 22:58:14 +0000 (15:58 -0700)
committerJosh Durgin <josh.durgin@inktank.com>
Tue, 27 Aug 2013 22:58:14 +0000 (15:58 -0700)
Signed-off-by: Josh Durgin <josh.durgin@inktank.com>
teuthology/orchestra/remote.py
teuthology/queue.py
teuthology/task/admin_socket.py

index 24baee27a7a4df9a9c475a8d5a02e2a9ebe94092..512ee3d1f0ea0ae1fc109a68d930eefb0b541d37 100644 (file)
@@ -220,7 +220,7 @@ class VirtualConsole():
             return
         self.connection = libvirt.open(phys_host)
         for i in self.connection.listDomainsID():
-            d = con.lookupByID(i)
+            d = self.connection.lookupByID(i)
             if d.name() == self.shortname:
                 self.vm_domain = d
                 break
index f7d8aee529c42029a21095a855ec72f6dbbf6535..97766768776dd735700fc2a2a79b6ac6d0410240 100644 (file)
@@ -6,6 +6,7 @@ import subprocess
 import shutil
 import sys
 import tempfile
+import time
 import yaml
 
 import beanstalkc
index 499525234543b02389f47671cf3a35aeca22742e..01c873c84b87b17f724e8efb21159cc746627223 100644 (file)
@@ -3,6 +3,7 @@ from cStringIO import StringIO
 import json
 import logging
 import os
+import time
 
 from ..orchestra import run
 from teuthology import misc as teuthology