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.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/openstack/common/service.py b/openstack/common/service.py
index 5630035..2bf67e5 100644
--- a/openstack/common/service.py
+++ b/openstack/common/service.py
@@ -191,7 +191,7 @@ class ProcessLauncher(object):
# Close write to ensure only parent has it open
os.close(self.writepipe)
# Create greenthread to watch for parent to close pipe
- eventlet.spawn(self._pipe_watcher)
+ eventlet.spawn_n(self._pipe_watcher)
# Reseed random number generator
random.seed()