The Apache Jenkins build system has built Camel.trunk.notest (build #2038)
Status: Failure
Check console output at https://builds.apache.org/job/Camel.trunk.notest/2038/
to view the results.
If you're using Camel >= 2.10.3 or 2.11, enable the writeResultAsHeader
endpoint option.
In the future, please use the users@ forum for such queries. And please
remember to always indicate what version of Camel you're running on.
Regards,
*Raúl Kripalani*
Apache Camel PMC Member & Committer | En
Ah actually I should not back port that commit at all as it would be an
elasticsearch upgrade:
0.19.10_1 => 0.90.5_1
On the 2.12.x patch branch of us which would be wrong to do.
Babak
Babak Vahdat wrote
> Hi
>
> Is there any specific reason why we should wait upgrading to Lucene 4.5.1
>
Hi
Is there any specific reason why we should wait upgrading to Lucene 4.5.1
https://github.com/apache/camel/blob/master/parent/pom.xml#L255
The matching SMX bundle version 4.5.1_1 would be in central as well.
Other than that I'm currently not able to back port commits to the 2.12.x
branch, any
Thanks for the hint but that was exactly the reason why I reopened the ticket
to get that done better.
Right now running tests of camel-core to make sure everything is fine.
Babak
Claus Ibsen-2 wrote
> Hi
>
> There is a stopAndShutdownService method on ServiceHelper in the util
> package. Its
Hi
There is a stopAndShutdownService method on ServiceHelper in the util
package. Its maybe nicer to use to than the type cast. Then you can do
that in one command.
And this is also how we stop/start/shutdown services in a cleaner way.
And if you enabled TRACE/DEBUG logging the service helper can
The Apache Jenkins build system has built Camel.2.12.x.notest (build #65)
Status: Failure
Check console output at https://builds.apache.org/job/Camel.2.12.x.notest/65/
to view the results.
I am trying to save some data in MongoDB using apache Camel. Following is my
code
from("direct:saveData")
.process(dataSaveRequestProcessor)
.streamCaching()
.to("mongodb:emailDB?database=myDB&collection=myData&operation=save&writeConcern=safe&writeResultAsHeader=true")
.pro