summaryrefslogtreecommitdiffstats
path: root/nova/service.py
diff options
context:
space:
mode:
Diffstat (limited to 'nova/service.py')
-rw-r--r--nova/service.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/nova/service.py b/nova/service.py
index 3731986c4..245640e5e 100644
--- a/nova/service.py
+++ b/nova/service.py
@@ -19,7 +19,6 @@
"""Generic Node base class for all workers that run on hosts."""
-import inspect
import os
import random
import sys
@@ -238,7 +237,7 @@ class Service(service.Service):
if not host:
host = CONF.host
if not binary:
- binary = os.path.basename(inspect.stack()[-1][1])
+ binary = os.path.basename(sys.argv[0])
if not topic:
topic = binary.rpartition('nova-')[2]
if not manager: