We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 18b3bd5 commit 398d498Copy full SHA for 398d498
services/dynamic-sidecar/src/simcore_service_dynamic_sidecar/modules/outputs/_manager.py
@@ -182,10 +182,12 @@ async def _uploading_task_cancel(self) -> None:
182
if self._task_uploading is not None:
183
await _cancel_task(self._task_uploading, self.task_cancellation_timeout_s)
184
await self._port_key_tracker.move_all_uploading_to_pending()
185
+ self._task_uploading = None
186
if self._task_uploading_followup is not None:
187
await _cancel_task(
188
self._task_uploading_followup, self.task_cancellation_timeout_s
189
)
190
+ self._task_uploading_followup = None
191
192
async def _scheduler_worker(self) -> None:
193
if await self._port_key_tracker.are_pending_ports_uploading():
0 commit comments