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 545de96 commit 34e0581Copy full SHA for 34e0581
packages/service-library/src/servicelib/rabbitmq/_utils.py
@@ -1,5 +1,4 @@
1
import logging
2
-import os
3
import socket
4
from typing import Any, Final
5
@@ -52,7 +51,7 @@ async def wait_till_rabbitmq_responsive(url: str) -> bool:
52
51
53
54
def get_rabbitmq_client_unique_name(base_name: str) -> str:
55
- return f"{base_name}_{socket.gethostname()}_{os.getpid()}"
+ return f"{base_name}_{socket.gethostname()}"
56
57
58
async def declare_queue(
0 commit comments