File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
packages/service-library/src/servicelib/long_running_tasks
services/web/server/src/simcore_service_webserver/long_running_tasks Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -62,10 +62,10 @@ class TaskRegistry:
6262
6363 @classmethod
6464 def register (cls , task : TaskProtocol , ** partial_kwargs ) -> None :
65- partail_task = functools .partial (task , ** partial_kwargs )
65+ partial_task = functools .partial (task , ** partial_kwargs )
6666 # allows to call the partial via it's original name
67- partail_task .__name__ = task .__name__ # type: ignore[attr-defined]
68- cls .REGISTERED_TASKS [task .__name__ ] = partail_task # type: ignore[assignment]
67+ partial_task .__name__ = task .__name__ # type: ignore[attr-defined]
68+ cls .REGISTERED_TASKS [task .__name__ ] = partial_task # type: ignore[assignment]
6969
7070 @classmethod
7171 def unregister (cls , task : TaskProtocol ) -> None :
Original file line number Diff line number Diff line change @@ -12,8 +12,8 @@ class LongRunningTasksSettings(BaseCustomSettings):
1212 str ,
1313 Field (
1414 description = (
15- "suffic to distinguis the service inside "
16- "the long_running_tasks framework"
15+ "suffix to distinguish between the various services based on this image "
16+ "inside the long_running_tasks framework"
1717 ),
1818 ),
1919 ]
You can’t perform that action at this time.
0 commit comments