Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions manager/manager/manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -244,6 +244,8 @@ def on_launch_world(self, event):
Note:
The method logs the start of the launch transition and the configuration details for debugging and traceability.
"""
# clean harmonic cache
self.terminate_harmonic_processes()

cfg_dict = event.kwargs.get("data", {})
world_cfg = cfg_dict['world']
Expand Down Expand Up @@ -731,6 +733,7 @@ def on_terminate_visualization(self, event):
self.gui_server = None

def on_terminate_universe(self, event):

if self.world_launcher != None:
self.world_launcher.terminate()
if self.robot_launcher != None:
Expand Down