summaryrefslogtreecommitdiff
path: root/src/leap/common/events/zmq_components.py
diff options
context:
space:
mode:
authorIvan Alejandro <ivanalejandro0@gmail.com>2015-10-06 14:41:18 -0300
committerIvan Alejandro <ivanalejandro0@gmail.com>2015-10-07 12:11:06 -0300
commit459024de9e36aea0813aa01a570b68db7e9c1a26 (patch)
treeac54c343fb057219aaad7b128cfe0adc9a1125ff /src/leap/common/events/zmq_components.py
parentd3519a062ea6924fa6b6b5cb4d804b5a39eb249f (diff)
[bug] consider STANDALONE for the paths
Since we need to write a file we have to consider whether we are running in 'standalone' mode or not to use the right path prefix. - Related: #7512
Diffstat (limited to 'src/leap/common/events/zmq_components.py')
-rw-r--r--src/leap/common/events/zmq_components.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/leap/common/events/zmq_components.py b/src/leap/common/events/zmq_components.py
index f99c754..729ca90 100644
--- a/src/leap/common/events/zmq_components.py
+++ b/src/leap/common/events/zmq_components.py
@@ -36,7 +36,7 @@ try:
except ImportError:
pass
-from leap.common.config import get_path_prefix
+from leap.common.config import flags, get_path_prefix
from leap.common.zmq_utils import zmq_has_curve
from leap.common.zmq_utils import maybe_create_and_get_certificates
from leap.common.zmq_utils import PUBLIC_KEYS_PREFIX
@@ -64,7 +64,7 @@ class TxZmqComponent(object):
self._factory = txzmq.ZmqFactory()
self._factory.registerForShutdown()
if path_prefix is None:
- path_prefix = get_path_prefix()
+ path_prefix = get_path_prefix(flags.STANDALONE)
self._config_prefix = os.path.join(path_prefix, "leap", "events")
self._connections = []