-
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] Fix issue with live tests failing on session-based tests #10325
[service-bus] Fix issue with live tests failing on session-based tests #10325
Conversation
…sessionId and partitionKey is now considered a failure.
/azp run js - servicebus - tests |
Azure Pipelines successfully started running 1 pipeline(s). |
Looks like there are still some failures. |
…live test run on my BatchingReceiverLite PR * Moved the receiverInit.spec.ts into 'internal' since it is purely a unit test.
/azp run js - servicebus - tests |
Azure Pipelines successfully started running 1 pipeline(s). |
Yeah, there were a few more spots that were toggling the sessionId without also updating the partitionKey. I also have a test failure that I introduced when I accidentally merged the BatchingReceiverLite changes without re-running the live tests (facepalm). I believe I got them all now, just rerunning. |
A service-side change made it so setting the partition id and session id to different values an error in some cases where, before, it would have been incorrect but harmless.
This fixes our test data so we don't run afoul of that rule. I've filed an issue (#10326) to deal with two problems that came out as a result of this.