File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed
packages/models-library/src/models_library/api_schemas_dynamic_sidecar
src/simcore_service_dynamic_sidecar/modules/notifications Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -11,14 +11,14 @@ class OutputStatus(StrAutoEnum):
1111 UPLOAD_STARTED = auto ()
1212 UPLOAD_WAS_ABORTED = auto ()
1313 UPLOAD_FINISHED_SUCCESSFULLY = auto ()
14- UPLOAD_FINISHED_WITH_ERRROR = auto ()
14+ UPLOAD_FINISHED_WITH_ERROR = auto ()
1515
1616
1717class InputStatus (StrAutoEnum ):
1818 DOWNLOAD_STARTED = auto ()
1919 DOWNLOAD_WAS_ABORTED = auto ()
2020 DOWNLOAD_FINISHED_SUCCESSFULLY = auto ()
21- DOWNLOAD_FINISHED_WITH_ERRROR = auto ()
21+ DOWNLOAD_FINISHED_WITH_ERROR = auto ()
2222
2323
2424class _PortStatusCommon (BaseModel ):
Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ async def send_output_port_upload_finished_with_error(
5252 self , port_key : ServicePortKey
5353 ) -> None :
5454 await self ._send_output_port_status (
55- port_key , OutputStatus .UPLOAD_FINISHED_WITH_ERRROR
55+ port_key , OutputStatus .UPLOAD_FINISHED_WITH_ERROR
5656 )
5757
5858 async def send_input_port_download_started (self , port_key : ServicePortKey ) -> None :
@@ -74,5 +74,5 @@ async def send_input_port_download_finished_with_error(
7474 self , port_key : ServicePortKey
7575 ) -> None :
7676 await self ._send_input_port_status (
77- port_key , InputStatus .DOWNLOAD_FINISHED_WITH_ERRROR
77+ port_key , InputStatus .DOWNLOAD_FINISHED_WITH_ERROR
7878 )
Original file line number Diff line number Diff line change @@ -289,7 +289,7 @@ async def test_notifier_send_input_port_status(
289289 await port_notifier .send_input_port_download_finished_succesfully (
290290 port_key
291291 )
292- case InputStatus .DOWNLOAD_FINISHED_WITH_ERRROR :
292+ case InputStatus .DOWNLOAD_FINISHED_WITH_ERROR :
293293 await port_notifier .send_input_port_download_finished_with_error (
294294 port_key
295295 )
@@ -378,7 +378,7 @@ async def test_notifier_send_output_port_status(
378378 await port_notifier .send_output_port_upload_finished_successfully (
379379 port_key
380380 )
381- case OutputStatus .UPLOAD_FINISHED_WITH_ERRROR :
381+ case OutputStatus .UPLOAD_FINISHED_WITH_ERROR :
382382 await port_notifier .send_output_port_upload_finished_with_error (
383383 port_key
384384 )
You can’t perform that action at this time.
0 commit comments