You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by nf...@apache.org on 2018/01/29 10:58:04 UTC

[camel] branch master updated: CAMEL-12204: make lra client compatible with jax-rs 2.0

This is an automated email from the ASF dual-hosted git repository.

nferraro pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git


The following commit(s) were added to refs/heads/master by this push:
     new 7f0d064  CAMEL-12204: make lra client compatible with jax-rs 2.0
7f0d064 is described below

commit 7f0d0645fa91e617881a954cc09baf4b4ab8dc61
Author: Nicola Ferraro <ni...@gmail.com>
AuthorDate: Mon Jan 29 11:56:22 2018 +0100

    CAMEL-12204: make lra client compatible with jax-rs 2.0
---
 .../src/main/java/org/apache/camel/service/lra/LRAClient.java          | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/components/camel-lra/src/main/java/org/apache/camel/service/lra/LRAClient.java b/components/camel-lra/src/main/java/org/apache/camel/service/lra/LRAClient.java
index 7c2edf5..2ba6877 100644
--- a/components/camel-lra/src/main/java/org/apache/camel/service/lra/LRAClient.java
+++ b/components/camel-lra/src/main/java/org/apache/camel/service/lra/LRAClient.java
@@ -54,7 +54,8 @@ public class LRAClient {
         this.sagaService = sagaService;
 
         this.client = ClientBuilder.newBuilder()
-                .executorService(sagaService.getExecutorService())
+                // CAMEL-12204: disabled for compatibility with JAX-RS 2.0
+                //.executorService(sagaService.getExecutorService())
                 .build();
 
         this.target = client.target(

-- 
To stop receiving notification emails like this one, please contact
nferraro@apache.org.