Skip to content

Commit

Permalink
ENH: Include question UUID in delivery acknowledgement log message
Browse files Browse the repository at this point in the history
  • Loading branch information
cortadocodes committed Mar 11, 2024
1 parent e1e77b6 commit 958fbef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion octue/cloud/pub_sub/service.py
Original file line number Diff line number Diff line change
Expand Up @@ -529,7 +529,7 @@ def _send_delivery_acknowledgment(self, topic, question_uuid, timeout=30):
attributes={"question_uuid": question_uuid, "sender_type": CHILD_SENDER_TYPE},
)

logger.info("%r acknowledged receipt of question.", self)
logger.info("%r acknowledged receipt of question %r.", self, question_uuid)

def _send_heartbeat(self, topic, question_uuid, timeout=30):
"""Send a heartbeat to the parent, indicating that the service is alive.
Expand Down

0 comments on commit 958fbef

Please sign in to comment.