We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5305db0 commit 286e5bdCopy full SHA for 286e5bd
1 file changed
manager/manager/manager.py
@@ -244,6 +244,8 @@ def on_launch_world(self, event):
244
Note:
245
The method logs the start of the launch transition and the configuration details for debugging and traceability.
246
"""
247
+ # clean harmonic cache
248
+ self.terminate_harmonic_processes()
249
250
cfg_dict = event.kwargs.get("data", {})
251
world_cfg = cfg_dict['world']
@@ -731,6 +733,7 @@ def on_terminate_visualization(self, event):
731
733
self.gui_server = None
732
734
735
def on_terminate_universe(self, event):
736
+
737
if self.world_launcher != None:
738
self.world_launcher.terminate()
739
if self.robot_launcher != None:
0 commit comments