File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed
web/server/src/simcore_service_webserver/storage Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 33# pylint: disable=unused-variable
44# pylint: disable=too-many-arguments
55
6+ import asyncio
67import functools
78import io
89import json
910import textwrap
10- import time
1111from contextlib import suppress
1212from pathlib import Path
1313from typing import TypedDict
@@ -293,7 +293,7 @@ async def test_run_study_workflow(
293293 )
294294 print (f"Status: [{ job_status .state } ]" )
295295
296- time .sleep (1 )
296+ await asyncio .sleep (1 )
297297
298298 print (await studies_api .inspect_study_job (study_id = template_id , job_id = new_job .id ))
299299
Original file line number Diff line number Diff line change 2222 parse_request_path_parameters_as ,
2323 parse_request_query_parameters_as ,
2424)
25- from servicelib .aiohttp .rest_responses import create_data_response , unwrap_envelope
25+ from servicelib .aiohttp .rest_responses import create_data_response
2626from servicelib .common_headers import X_FORWARDED_PROTO
2727from servicelib .request_keys import RQT_USERID_KEY
28+ from servicelib .rest_responses import unwrap_envelope
2829from yarl import URL
2930
3031from .._meta import API_VTAG
You can’t perform that action at this time.
0 commit comments