This is an automated email from the ASF dual-hosted git repository.
acosentino 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 89d4b50 CAMEL-12958 - Wrong camel context bound in service registry
of jbpm/Kie Server
89d4b50 is described below
commit 89d4b5000b0b9f2c204384df5e36b216ffb203d0
Author: Maciej Swiderski <[email protected]>
AuthorDate: Mon Nov 26 13:42:48 2018 +0100
CAMEL-12958 - Wrong camel context bound in service registry of jbpm/Kie
Server
---
.../org/apache/camel/component/jbpm/server/CamelKieServerExtension.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/components/camel-jbpm/src/main/java/org/apache/camel/component/jbpm/server/CamelKieServerExtension.java
b/components/camel-jbpm/src/main/java/org/apache/camel/component/jbpm/server/CamelKieServerExtension.java
index fbc4448..0e297be 100644
---
a/components/camel-jbpm/src/main/java/org/apache/camel/component/jbpm/server/CamelKieServerExtension.java
+++
b/components/camel-jbpm/src/main/java/org/apache/camel/component/jbpm/server/CamelKieServerExtension.java
@@ -117,7 +117,7 @@ public class CamelKieServerExtension implements
KieServerExtension {
context.start();
camelContexts.put(id, context);
- ServiceRegistry.get().register(id + "_CamelService",
this.camel);
+ ServiceRegistry.get().register(id + "_CamelService", context);
}
} catch (Exception e) {