Skip to content

Commit

Permalink
Fix node namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
d8n1z committed Nov 28, 2023
1 parent cebc72e commit 449264e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion composer/node.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
#
#

import os
import composer.param as param


Expand All @@ -31,7 +32,8 @@ def __init__(self, stack, manifest={}):
self._ros_args = manifest.get('ros_args', '')
self._remap_args = []
self._args = ''
self._namespace = manifest.get('namespace', '/')
muto_ns = os.getenv('MUTONS')
self._namespace = manifest.get('namespace', muto_ns)
self._launch_prefix = manifest.get('launch-prefix', None)
self._output = manifest.get('output', 'log')
self._iff = manifest.get('if', '')
Expand Down

0 comments on commit 449264e

Please sign in to comment.