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 1a8033c commit 6b51e20Copy full SHA for 6b51e20
services/servicebus/service.py
@@ -67,7 +67,8 @@ async def start(self):
67
await super().start()
68
try:
69
# Start the DCS listener
70
- self.executor = ThreadPoolExecutor(thread_name_prefix='ServiceBus', max_workers=100)
+ self.executor = ThreadPoolExecutor(thread_name_prefix='ServiceBus',
71
+ max_workers=100 if self.master else 20)
72
await self.start_udp_listener()
73
74
# cleanup the intercom and broadcast channels
0 commit comments