-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Service Bus] Throw when partitionKey is not same as sessionId #12490
Conversation
/azp run js - servicebus - tests |
Azure Pipelines successfully started running 1 pipeline(s). |
* @throw | ||
*/ | ||
export const PartitionKeySessionIdMismatchError = | ||
"The fields 'partitionKey' and 'sessionId' cannot have different values."; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Changelog
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'll add one in a separate PR with the other validation checks I added in previous PRs
Co-authored-by: Harsha Nalluru <sanallur@microsoft.com>
/azp run js - servicebus - tests |
Azure Pipelines successfully started running 1 pipeline(s). |
[Hub Generated] Review request for Microsoft.ImportExport to add version preview/2021-01-01 (Azure#12490) * Adds base for updating Microsoft.ImportExport from version stable/2020-08-01 to version 2021-01-01 * Updates readme * Updates API version in new specs and examples * making changes to swagger for upgraded version * prettier fix
This PR adds validation checks for when partitionKey and sessionId are set to different values. Closes #12312