Skip to content

Commit 2fa4dc4

Browse files
committed
Missing await
1 parent 731807d commit 2fa4dc4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

services/sidecar/src/simcore_service_sidecar/log_parser.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ async def _monitor_log_file(
121121
# try to read line
122122
line = await file_pointer.readline()
123123
if not line:
124-
asyncio.sleep(1)
124+
await asyncio.sleep(1)
125125
continue
126126
log_type, parsed_line = await parse_line(line)
127127

0 commit comments

Comments
 (0)