Skip to content

Commit

Permalink
⚗️Computational services: pass as logs even if recognized as a progre…
Browse files Browse the repository at this point in the history
…ss value (#4381)
  • Loading branch information
sanderegg authored Jun 19, 2023
1 parent c8dee4b commit ddb37c4
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -164,10 +164,10 @@ async def _parse_and_publish_logs(
progress_value = await _try_parse_progress(log_line)
if progress_value is not None:
task_publishers.publish_progress(progress_value)
else:
task_publishers.publish_logs(
message=log_line, log_level=guess_message_log_level(log_line)
)

task_publishers.publish_logs(
message=log_line, log_level=guess_message_log_level(log_line)
)


async def _parse_container_log_file(
Expand Down

0 comments on commit ddb37c4

Please sign in to comment.