-
Notifications
You must be signed in to change notification settings - Fork 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
Tables regenerated implementation layer #19009
Tables regenerated implementation layer #19009
Conversation
@Get("/Tables") | ||
@ExpectedResponses({200}) | ||
@UnexpectedResponseExceptionType(TableServiceErrorException.class) | ||
@UnexpectedResponseExceptionType(HttpResponseException.class) |
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.
Did the Swagger change the error type here? Or was this error type changed manually in the past?
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.
This is odd because all of the other methods still use TableServiceErrorException
. Maybe it's an issue in the swagger?
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 rolled back this change for the time being and will investigate for next month's release.
Fixes #17378.
Also had to modify the
TablesJacksonSerializer
because of a change inTablesQueryEntityWithPartitionAndRowKeyResponse
, whose value property is is now of typeMap<String, Object>
instead ofTableEntityQueryResponse
.