summaryrefslogtreecommitdiffstats
path: root/openstack/common/service.py
diff options
context:
space:
mode:
Diffstat (limited to 'openstack/common/service.py')
-rw-r--r--openstack/common/service.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/openstack/common/service.py b/openstack/common/service.py
index 6b180aa..48aeb9d 100644
--- a/openstack/common/service.py
+++ b/openstack/common/service.py
@@ -51,7 +51,7 @@ class Launcher(object):
:returns: None
"""
- self._services = threadgroup.ThreadGroup('launcher')
+ self._services = threadgroup.ThreadGroup()
eventlet_backdoor.initialize_if_enabled()
@staticmethod
@@ -310,7 +310,7 @@ class Service(object):
"""Service object for binaries running on hosts."""
def __init__(self, threads=1000):
- self.tg = threadgroup.ThreadGroup('service', threads)
+ self.tg = threadgroup.ThreadGroup(threads)
def start(self):
pass