-
Notifications
You must be signed in to change notification settings - Fork 3.2k
test fixes #2357
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
test fixes #2357
Conversation
updated POST opretions for Authorization rules for Queues and Topics
Added enableBatchedOperations property to ServiceBus Queue
added 'properties' to corelationfilter
removed 'enableSubscriptionPartitioning' depricated property
|
Can one of the admins verify this patch? |
1 similar comment
|
Can one of the admins verify this patch? |
a8e1ca1 to
8ed2362
Compare
lmazuel
left a comment
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.
General advice in Python, if you touch a _variable name it's probably the wrong thing to do.
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.
Don't do that, that's really bad. And it's why the CI is breaking.
If you wish not to wait, use polling=False. If you wish to wait, call result()
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.
Resolved
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.
Don't do that, that's really bad. And it's why the CI is breaking.
If you wish not to wait, use polling=False. If you wish to wait, call result()
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.
Resolved
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.
If namespace is a long running operation, calling result() will wait and you don't need that. There is automatic blocking on result()
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.
Resolved
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.
Don't do that, that's really bad. And it's why the CI is breaking.
If you wish not to wait, use polling=False. If you wish to wait, call result()
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.
Resolved
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.
Don't do that, that's really bad. And it's why the CI is breaking.
If you wish not to wait, use polling=False. If you wish to wait, call result()
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.
Resolved
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.
Don't do that, that's really bad. And it's why the CI is breaking.
If you wish not to wait, use polling=False. If you wish to wait, call result()
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.
Resolved
|
@v-Ajnava There is strong issues in your tests, that then have no chances to pass CI. |
…thub.com/Azure/azure-sdk-for-python into masterSB # Conflicts: # setup.py
Codecov Report
@@ Coverage Diff @@
## restapi_auto_servicebus/resource-manager #2357 +/- ##
===========================================================================
Coverage ? 54.86%
===========================================================================
Files ? 5552
Lines ? 129160
Branches ? 0
===========================================================================
Hits ? 70858
Misses ? 58302
Partials ? 0Continue to review full report at Codecov.
|
|
@lmazuel , My Bad, did not figured that .result() will get namespace resource. rather I went in wrong direction to resolve it. sorry for the trouble. |
lmazuel
left a comment
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.
LGTM, thanks!
* Generated from 53d1a0f7b7527828b2cdec46ed4fe3af768b11f4 (#1946) updated POST opretions for Authorization rules for Queues and Topics * Generated from eb292024b547ba2920c6cbe2231e8ee44a2c71ef (#2049) Added enableBatchedOperations property to ServiceBus Queue * Fix double azure-common install that breaks bdist_wheel * Generated from bc96045bf6a0e056903d0a2d798202ff9bd05165 (#2249) added 'properties' to corelationfilter * Generated from cb47714a72869d9271ef4a750f5997d4d070aaf2 (#2282) removed 'enableSubscriptionPartitioning' depricated property * Update version.py * Updated Tests
* Generated from eb292024b547ba2920c6cbe2231e8ee44a2c71ef (#2049) Added enableBatchedOperations property to ServiceBus Queue * Generated from bc96045bf6a0e056903d0a2d798202ff9bd05165 (#2249) added 'properties' to corelationfilter * Generated from cb47714a72869d9271ef4a750f5997d4d070aaf2 (#2282) removed 'enableSubscriptionPartitioning' depricated property * Update version.py * test fixes (#2357) * Generated from 53d1a0f7b7527828b2cdec46ed4fe3af768b11f4 (#1946) updated POST opretions for Authorization rules for Queues and Topics * Generated from eb292024b547ba2920c6cbe2231e8ee44a2c71ef (#2049) Added enableBatchedOperations property to ServiceBus Queue * Fix double azure-common install that breaks bdist_wheel * Generated from bc96045bf6a0e056903d0a2d798202ff9bd05165 (#2249) added 'properties' to corelationfilter * Generated from cb47714a72869d9271ef4a750f5997d4d070aaf2 (#2282) removed 'enableSubscriptionPartitioning' depricated property * Update version.py * Updated Tests * [AutoPR servicebus/resource-manager] Service Bus: added $skip and $top to list commands (#2472) * Generated from 8dcd1fb891075f38d26f230c0d3078629ba6b34f added $skip and $top to list commands * Generated from 69e26f29dd3395f76d8b5cc8852f25506e9d7697 removed skip and top for namespaces * Generated from 0d81d201fe6d5174be33f52d93c73d827c53df46 (#2477) Py conf SB 0.5.0 * SB Mgmt 0.5.0 packaging
Test Fixes