zbendhiba commented on issue #3713:
URL: https://github.com/apache/camel-quarkus/issues/3713#issuecomment-1095243771

   @jamesnetherton this worked for you? It still failing for me.
   
    I looked at the Standalone Java I've created last week with Azure SDK, the 
method with SegmentOption=null is working fine.
   
   This is working in Standalone Java + Azure SDK :
   ```
   List<QueueItem> list = queueServiceClient.listQueues(null, null, 
Context.NONE).stream().collect(Collectors.toList());
               for(QueueItem queue:list){
                   // Output each queue name.
                   System.out.println("************" + queue.getName());
               }
   ```
   
   In camel quarkus, the only part that is failing is the `stream` on the 
result. If I debug the  ` queueServiceClient.listQueues(null, null, 
Context.NONE)`, I can see on JVM mode that there is an object in the response.
   
   I need to test with camel standalone, to check if it works fine with it.
   
   BTW the official documentation points to this method 
https://github.com/Azure/azure-sdk-for-java/blob/8b6aadc2bede033373766e4f84ce331b68c2f19e/sdk/storage/azure-storage-queue/src/main/java/com/azure/storage/queue/QueueServiceClient.java#L229,
 that puts NULL
   
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to