File tree Expand file tree Collapse file tree 2 files changed +2
-4
lines changed
services/web/server/src/simcore_service_webserver Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -228,6 +228,7 @@ printf "$$rows" Redis 'http://$(get_my_ip).nip.io:18081';\
228228printf "$$rows" 'Docker Registry' $${REGISTRY_URL} $${REGISTRY_USER} $${REGISTRY_PW};\
229229printf "$$rows" "Dask Dashboard" "http://$(get_my_ip ) .nip.io:8787";
230230printf "$$rows" "Traefik Dashboard" "http://$(get_my_ip ) .nip.io:8080/dashboard/";
231+ printf "$$rows" "Rabbit Dashboard" "http://$(get_my_ip ) .nip.io:15762" admin adminadmin;
231232printf "\n%s\n" "⚠️ if a DNS is not used (as displayed above), the interactive services started via dynamic-sidecar";\
232233echo "⚠️ will not be shown. The frontend accesses them via the uuid.services.YOUR_IP.nip.io:9081";
233234endef
Original file line number Diff line number Diff line change @@ -172,15 +172,12 @@ async def exchange_consumer(
172172 # Declaring queue
173173 queue = await channel .declare_queue (
174174 f"webserver_{ exchange_name } _{ socket .gethostname ()} _{ os .getpid ()} " ,
175- exclusive = True ,
176175 arguments = {"x-message-ttl" : 60000 },
177176 )
178177 # Binding the queue to the exchange
179178 await queue .bind (exchange )
180179 # process
181- async with queue .iterator (
182- exclusive = True , ** consumer_kwargs
183- ) as queue_iter :
180+ async with queue .iterator (** consumer_kwargs ) as queue_iter :
184181 async for message in queue_iter :
185182 log .debug (
186183 "Received message from exchange %s" , exchange_name
You can’t perform that action at this time.
0 commit comments