We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1ba2011 commit c77fa8bCopy full SHA for c77fa8b
services/web/server/src/simcore_service_webserver/notifications/_rabbitmq_exclusive_queue_consumers.py
@@ -95,6 +95,7 @@ async def _computational_pipeline_status_message_parser(
95
rabbit_message.user_id,
96
include_state=True,
97
)
98
+ _logger.info("We got an update of pipeline status %s", rabbit_message.run_result)
99
if rabbit_message.run_result in RUNNING_STATE_COMPLETED_STATES:
100
# the pipeline finished, the frontend needs to update all computational nodes
101
computational_node_ids = (
@@ -104,7 +105,6 @@ async def _computational_pipeline_status_message_parser(
104
105
106
if _is_computational_node(n.key)
107
-
108
await limited_gather(
109
*[
110
_projects_service.notify_project_node_update(
0 commit comments