-
Notifications
You must be signed in to change notification settings - Fork 2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixing a bug in setting delivery count on a received message. It was …
…starting from 0, where as it should start from 1. (#11845) The SDK sets delivery count on a received message starting from 0. If a message is received the first time, its delivery count is 0. But the real delivery count for service bus messages starts from 1. The discrepancy arose because AMQP spec defines delivery count as something that starts from 0. To comply with the spec, service bus puts (delivery count - 1) on the AMQP frame and the SDK is expected to increment it by 1.
- Loading branch information
Showing
3 changed files
with
6 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters