Skip to content

Commit cac47cc

Browse files
committed
use default
1 parent 4896680 commit cac47cc

File tree

3 files changed

+0
-6
lines changed

3 files changed

+0
-6
lines changed

services/web/server/src/simcore_service_webserver/notifications/_rabbitmq_exclusive_queue_consumers.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,6 @@ async def _progress_message_parser(app: web.Application, data: bytes) -> bool:
9393
app,
9494
rabbit_message.user_id,
9595
message=message,
96-
ignore_queue=False,
9796
)
9897
return True
9998

@@ -107,7 +106,6 @@ async def _log_message_parser(app: web.Application, data: bytes) -> bool:
107106
event_type=SOCKET_IO_LOG_EVENT,
108107
data=rabbit_message.model_dump(exclude={"user_id", "channel_name"}),
109108
),
110-
ignore_queue=False,
111109
)
112110
return True
113111

@@ -124,7 +122,6 @@ async def _events_message_parser(app: web.Application, data: bytes) -> bool:
124122
"node_id": f"{rabbit_message.node_id}",
125123
},
126124
),
127-
ignore_queue=False,
128125
)
129126
return True
130127

services/web/server/src/simcore_service_webserver/payments/_socketio.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@ async def notify_payment_completed(
2929
event_type=SOCKET_IO_PAYMENT_COMPLETED_EVENT,
3030
data=jsonable_encoder(payment, by_alias=True),
3131
),
32-
ignore_queue=False,
3332
)
3433

3534

@@ -46,5 +45,4 @@ async def notify_payment_method_acked(
4645
event_type=SOCKET_IO_PAYMENT_METHOD_ACKED_EVENT,
4746
data=jsonable_encoder(payment_method_transaction, by_alias=True),
4847
),
49-
ignore_queue=False,
5048
)

services/web/server/src/simcore_service_webserver/projects/_projects_service.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1961,7 +1961,6 @@ async def notify_project_state_update(
19611961
app,
19621962
user_id=notify_only_user,
19631963
message=message,
1964-
ignore_queue=False,
19651964
)
19661965
else:
19671966
rooms_to_notify: Generator[GroupID, None, None] = (

0 commit comments

Comments
 (0)