Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fixed test
Browse files Browse the repository at this point in the history
Andrei Neagu committed Jun 20, 2024
1 parent 545de96 commit 34e0581
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions packages/service-library/src/servicelib/rabbitmq/_utils.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import logging
import os
import socket
from typing import Any, Final

@@ -52,7 +51,7 @@ async def wait_till_rabbitmq_responsive(url: str) -> bool:


def get_rabbitmq_client_unique_name(base_name: str) -> str:
return f"{base_name}_{socket.gethostname()}_{os.getpid()}"
return f"{base_name}_{socket.gethostname()}"


async def declare_queue(

0 comments on commit 34e0581

Please sign in to comment.