From: Josh Durgin Date: Tue, 27 Aug 2013 22:58:14 +0000 (-0700) Subject: Fix undefined symbol errors X-Git-Tag: 1.1.0~1933^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F55%2Fhead;p=teuthology.git Fix undefined symbol errors Signed-off-by: Josh Durgin --- diff --git a/teuthology/orchestra/remote.py b/teuthology/orchestra/remote.py index 24baee27a..512ee3d1f 100644 --- a/teuthology/orchestra/remote.py +++ b/teuthology/orchestra/remote.py @@ -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 diff --git a/teuthology/queue.py b/teuthology/queue.py index f7d8aee52..977667687 100644 --- a/teuthology/queue.py +++ b/teuthology/queue.py @@ -6,6 +6,7 @@ import subprocess import shutil import sys import tempfile +import time import yaml import beanstalkc diff --git a/teuthology/task/admin_socket.py b/teuthology/task/admin_socket.py index 499525234..01c873c84 100644 --- a/teuthology/task/admin_socket.py +++ b/teuthology/task/admin_socket.py @@ -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