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 462ff51 commit 34446c5Copy full SHA for 34446c5
services/autoscaling/src/simcore_service_autoscaling/modules/dask.py
@@ -149,8 +149,8 @@ def _list_on_scheduler(
149
) | {DASK_WORKER_THREAD_RESOURCE_NAME: 1}
150
151
return DaskClusterTasks(
152
- processing=dict(worker_to_processing_tasks),
153
- unrunnable=unrunnable_tasks,
+ processing=worker_to_processing_tasks, # type: ignore[typeddict-item]
+ unrunnable=unrunnable_tasks, # type: ignore[typeddict-item]
154
)
155
156
list_of_tasks: DaskClusterTasks = await client.run_on_scheduler(_list_on_scheduler)
0 commit comments