From 232e3d32bc8e34763016055b864031d502e7df35 Mon Sep 17 00:00:00 2001 From: Josh Durgin Date: Tue, 27 Aug 2013 15:58:14 -0700 Subject: [PATCH] Fix undefined symbol errors Signed-off-by: Josh Durgin --- teuthology/orchestra/remote.py | 2 +- teuthology/queue.py | 1 + teuthology/task/admin_socket.py | 1 + 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/teuthology/orchestra/remote.py b/teuthology/orchestra/remote.py index 24baee27a7a4d..512ee3d1f0ea0 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 f7d8aee529c42..97766768776dd 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 499525234543b..01c873c84b87b 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 -- 2.39.5