Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagehtml/xml
<!--Broker will drop the message after the configured number of delivery attempts for each message.-->
	    <maximumRedeliveryAttempts>10</maximumRedeliveryAttempts>

Note that this is the above configuration specifies the total number of delivery attempts, not re-delivery attempts after the original delivery attempt. After the maximum number of re-delivery attempts are breached, the message is sent to theĀ Dead Letter Channel. This is useful when the client application does not acknowledge the message because an operation on the message failed.

...