Srikanta
Srikanta
We should also look into what we should do for `Configuration.PROPERTY_*` constants. https://github.com/Azure/azure-sdk-for-java/blob/feature/generic-sdk-core-2/sdk/client-core/core/src/main/java/io/clientcore/core/util/configuration/Configuration.java#L40-L94
Alternate option to consider: ```java // before SyncPoller poller= client.beginOperation(); // after SyncPoller poller= client.beginOperation(); CustomResult customResult = poller.poll().getValue(); ActivationResult activationResult = customResult.getActivationResult(); ``` CustomResult is a customized class that...
Thanks @joshfree. I will take a look at this issue. @parasjain27031994 Do you still have this issue? Does using the OpenTelemetry Quarkus extension solve the issue?
I used the code sample provided by @parasjain27031994 to repro this issue - https://github.com/parasjain27031994/quarkus-azure-queue-sample.git Adding the `quarkus-netty` extension and including the following in `src/main/resources/META-INF/native-image///native-images.properties` file should fix the above errors....
Completed in this PR - https://github.com/Azure/azure-sdk-for-java/pull/41048
/azp run java - monitor - tests
/azp run java - monitor - tests
/azp run java - monitor - tests
/azp run java - monitor - tests
@FelixStumvollDT The implementation has changed a bit in the recent releases. Could you please check the latest version of this library and let us know if there's any issue with...