From f56c330fe4d4cf04ce77534a44ffe74884b54da8 Mon Sep 17 00:00:00 2001 From: Endre Karlson Date: Thu, 25 Apr 2013 12:28:05 -0700 Subject: [PATCH] Use the right module --- bin/billingstack-biller | 4 ++-- bin/billingstack-collector | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/bin/billingstack-biller b/bin/billingstack-biller index f1bc941..0478d16 100644 --- a/bin/billingstack-biller +++ b/bin/billingstack-biller @@ -19,7 +19,7 @@ from oslo.config import cfg from billingstack.openstack.common import log as logging from billingstack.openstack.common import service from billingstack import utils -from billingstack.central import service as central_service +from billingstack.biller import service as biller_service eventlet.monkey_patch() @@ -27,6 +27,6 @@ utils.read_config('billingstack', sys.argv) logging.setup('billingstack') -launcher = service.launch(central_service.Service(), +launcher = service.launch(biller_service.Service(), cfg.CONF['service:biller'].workers) launcher.wait() diff --git a/bin/billingstack-collector b/bin/billingstack-collector index 6ff723b..4a73d2c 100644 --- a/bin/billingstack-collector +++ b/bin/billingstack-collector @@ -19,7 +19,7 @@ from oslo.config import cfg from billingstack.openstack.common import log as logging from billingstack.openstack.common import service from billingstack import utils -from billingstack.central import service as central_service +from billingstack.collector import service as collector_service eventlet.monkey_patch() @@ -27,6 +27,6 @@ utils.read_config('billingstack', sys.argv) logging.setup('billingstack') -launcher = service.launch(central_service.Service(), +launcher = service.launch(collector_service.Service(), cfg.CONF['service:collector'].workers) launcher.wait()