From 2bf1181e0edc19764229b3c0a4fa47fdef4a55af Mon Sep 17 00:00:00 2001 From: Eddasol Date: Mon, 19 Jun 2023 11:57:50 +0200 Subject: [PATCH] Fix bug where Flotilla tries to start several missions --- src/isar/state_machine/state_machine.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/isar/state_machine/state_machine.py b/src/isar/state_machine/state_machine.py index 939ef061..d412a57f 100644 --- a/src/isar/state_machine/state_machine.py +++ b/src/isar/state_machine/state_machine.py @@ -292,12 +292,6 @@ def _mission_started(self) -> None: ) self.log_step_overview(mission=self.current_mission) - # This is a workaround to enable the Flotilla repository to write the mission to - # its database before the publishing from ISAR starts. This is not a permanent - # solution and should be further addressed in the following issue. - # https://github.com/equinor/flotilla/issues/226 - time.sleep(2) - self.current_mission.status = MissionStatus.InProgress self.publish_mission_status() self.current_task = self.task_selector.next_task()