Skip to content

Commit

Permalink
fix internal_callback logging message
Browse files Browse the repository at this point in the history
  • Loading branch information
kba authored Oct 29, 2024
1 parent 6d8539c commit 93ec19a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ocrd_network/processing_worker.py
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ def publish_result_to_all(self, processing_message: OcrdProcessingMessage, resul
# post the result message (callback to a user defined endpoint)
post_to_callback_url(self.log, callback_url, result_message)
if internal_callback_url:
self.log.info(f"Publishing result to internal callback url (Processing Server): {callback_url}")
self.log.info(f"Publishing result to internal callback url (Processing Server): {internal_callback_url}")
# If the internal callback_url field is set,
# post the result message (callback to Processing Server endpoint)
post_to_callback_url(self.log, internal_callback_url, result_message)
Expand Down

0 comments on commit 93ec19a

Please sign in to comment.