Skip to content
Snippets Groups Projects
Commit 2f7075fc authored by Nicolas Dandrimont's avatar Nicolas Dandrimont
Browse files

rabbitmq client: don't dump all responses as debug logs

parent ab126368
No related branches found
No related tags found
No related merge requests found
......@@ -364,19 +364,12 @@ class ProvenanceStorageRabbitMQClient(threading.Thread, metaclass=MetaRabbitMQCl
properties: pika.spec.BasicProperties,
body: bytes,
) -> None:
LOGGER.debug(
"Received message # %s from %s: %s",
deliver.delivery_tag,
properties.app_id,
body,
)
self._response_queue.put(
(
properties.correlation_id,
decode_data(body, extra_decoders=self.extra_type_decoders),
)
)
LOGGER.debug("Acknowledging message %s", deliver.delivery_tag)
channel.basic_ack(delivery_tag=deliver.delivery_tag)
def stop_consuming(self) -> None:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment