Skip to content

Commit

Permalink
Set retain to false
Browse files Browse the repository at this point in the history
  • Loading branch information
aeshub committed Mar 19, 2023
1 parent 75ba968 commit 8c3ef8f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/isar_turtlebot/robotinterface.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ def get_telemetry_publishers(
telemetry_method=self.turtlebot.get_pose_telemetry,
topic=f"isar/{isar_id}/pose",
interval=1,
retain=True,
retain=False,
)
pose_thread: Thread = Thread(
target=pose_publisher.run,
Expand All @@ -72,7 +72,7 @@ def get_telemetry_publishers(
telemetry_method=self.turtlebot.get_battery_telemetry,
topic=f"isar/{isar_id}/battery",
interval=1,
retain=True,
retain=False,
)
battery_thread: Thread = Thread(
target=battery_publisher.run,
Expand Down

0 comments on commit 8c3ef8f

Please sign in to comment.