Weidong Xu
Weidong Xu
There is discussion of the method signature of the LRO API in apiview https://apiview.dev/Assemblies/Conversation/c48b47bd12a6493aa27b2cec58f9e54e#46f262e257de451485c82b43abb61bb5 Please reach a decision (if possible in SDK review meeting, for cross-language agreement). I can help...
The branch seems having problem. There's 2516 files
I see there is another PR pending in spec. https://github.com/Azure/azure-rest-api-specs/pull/28322 It would be fine if you do this on the next preview api-version.
@thang-bit I've regenerated the lib for you. Please see if you can schedule a release.
Comment ID could have the same integer overflow. e.g. https://api.github.com/repos/Azure/azure-sdk-for-java/issues/comments/2188169837 It maybe safer to convert all ID of `int` type to `long` type.
You may enable the HTTP logging https://github.com/Azure/azure-sdk-for-java/tree/main/sdk/resourcemanager#enabling-logging It may help find which API having this probelm. The error looks like some response is expected to be application/json, but actually is...
> > You may enable the HTTP logging > > Looking at your link, do you mean the part about adding this to the resource manager? > > `.withLogLevel(HttpLogDetailLevel.BODY_AND_HEADERS)` >...
Thanks for the log, @mnsc I think 503 (most of the 5xx) would be retried by the default RetryPolicy of SDK. https://github.com/Azure/azure-sdk-for-java/blob/main/sdk/core/azure-core/src/main/java/com/azure/core/http/policy/RetryStrategy.java#L50-L52 I will double check whether the HTML (that...
I've made local test with mock 503. I can see the RetryPolicy works as expected. It would retry for 3 times.
I tested with a short html `` (`content-type` be `text/html`, same as yours) -- anyway that's not a valid JSON and de-serialization will throw exception I can see similar logs...