Skip to content

Commit

Permalink
fixes from lab testing
Browse files Browse the repository at this point in the history
  • Loading branch information
marinagmoreira committed Feb 8, 2024
1 parent c9bf0c5 commit bc07049
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<!-- arguments -->
<arg name="planner" default="trey" /> <!-- either optic or trey -->
<arg name="lifecycle" default="true" /> <!-- lifecycle node -->
<arg name="robot1" default="bumble" /> <!-- lifecycle node -->
<arg name="robot1" default="" /> <!-- lifecycle node -->
<arg name="robot2" default="honey" /> <!-- lifecycle node -->


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -449,15 +449,15 @@ def survey_manager_executor(command_names, run, config_static_path: pathlib.Path
current_robot = ""
sim = True

ns = ""
ns = " -remote"
# If we're commanding a robot remotely
if current_robot != args["robot"]:
rospy.loginfo("We're commanding a namespaced robot!")
ns = " -remote -ns " + args["robot"]
# Command executor will add namespace for bridge forwarding
command_executor = CommandExecutor("/" + args["robot"])
else:
command_executor = CommandExecutor("/")
command_executor = CommandExecutor("")
process_executor = ProcessExecutor(args["robot"])

# Initialize exit code
Expand Down

0 comments on commit bc07049

Please sign in to comment.