-
Notifications
You must be signed in to change notification settings - Fork 4k
ServiceBus : bug fix and New SDK Nuget version #3858
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
Conversation
…nto SBFixes # Conflicts: # src/ResourceManager/ServiceBus/Commands.ServiceBus/Commands.ServiceBus.csproj
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.
@v-Ajnava a couple of comments
Also, please make the same changes to the wxi file that I commented about in your other pull request
@@ -20,6 +20,8 @@ | |||
--> | |||
## Current Release | |||
|
|||
* Bug fix : some properties were not updated beacuse of the space inserted in swagger spec. |
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.
@v-Ajnava can you provide the types that this applies to?
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.
updated change log with properties affected due to bug.
|
||
NamespaceAttributes getNamespaceLoc = Client.GetNamespace(ResourceGroup, NamespaceName); | ||
QueueObj.Location = getNamespaceLoc.Location; |
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.
@v-Ajnava what if QueueObj
is null?
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.
checking for null object. if null object passed service will return error.
@@ -52,7 +52,6 @@ public QueueAttributes(QueueResource quResource) | |||
Status = quResource.Status; | |||
SupportOrdering = quResource.SupportOrdering; | |||
UpdatedAt = quResource.UpdatedAt; | |||
|
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.
@v-Ajnava please revert this change
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.
reverted
@@ -527,117 +497,6 @@ public bool DeleteSubscription(string resourceGroupName, string namespaceName, s | |||
} | |||
|
|||
#endregion Subscription | |||
|
|||
//#region EventHub |
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.
@v-Ajnava why was all of this commented out? Nonetheless, it should be deleted instead of commented out
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.
Deleted all commented code.
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.
Will file an issue for the changelog update
@@ -20,6 +20,9 @@ | |||
--> | |||
## Current Release | |||
|
|||
* Bug fix : some properties of Queue object were not updated beacuse of the space inserted in there name in swagger spec. |
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.
Thin k of this form the customer perspective - what would the customer need to know about this - just what the affects of the bug were and that it was fixed, not the root cause.
on demand run here: http://azuresdkci.cloudapp.net/view/1-AzurePowerShell/job/powershell-demand/1503/ Issue to fix changelog is here: #3872 |
Description
This checklist is used to make sure that common guidelines for a pull request are followed. You can find a more complete discussion of PowerShell cmdlet best practices here.
General Guidelines
Testing Guidelines
Cmdlet Signature Guidelines
ShouldProcess
and haveSupportShouldProcess=true
specified in the cmdlet attribute. You can find more information onShouldProcess
here.OutputType
attribute if any output is produced - if the cmdlet produces no output, it should implement aPassThru
parameter.Cmdlet Parameter Guidelines