summaryrefslogtreecommitdiff
path: root/trove/cmd/guest.py
diff options
context:
space:
mode:
Diffstat (limited to 'trove/cmd/guest.py')
-rwxr-xr-xtrove/cmd/guest.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/trove/cmd/guest.py b/trove/cmd/guest.py
index efa8f91f..b401daf6 100755
--- a/trove/cmd/guest.py
+++ b/trove/cmd/guest.py
@@ -25,11 +25,11 @@ gettext.install('trove', unicode=1)
import sys
from oslo_config import cfg as openstack_cfg
+from oslo_service import service as openstack_service
from trove.common import cfg
from trove.common import debug_utils
from trove.openstack.common import log as logging
-from trove.openstack.common import service as openstack_service
CONF = cfg.CONF
# The guest_id opt definition must match the one in common/cfg.py
@@ -66,5 +66,5 @@ def main():
manager=manager, host=CONF.guest_id,
rpc_api_version=rpc_version.RPC_API_VERSION)
- launcher = openstack_service.launch(server)
+ launcher = openstack_service.launch(CONF, server)
launcher.wait()