For what it's worth this is a little ruby script we use in our environment
to update from git.
stash = /Saved working directory/.match(`git stash`)
unless stash.nil?
puts "Local working changes have been stashed"
end
`git fetch`
`git rebase -p`
unless stash.nil?
GitHub user NersesAM opened a pull request:
https://github.com/apache/camel/pull/22
CAMEL-5829
Adding readLockLoggingLevel to allow to configure logging level of read
lock strategy.
More details on https://issues.apache.org/jira/browse/CAMEL-5829
You can merge this pull re
Thanks for sharing Henryk!
Best,
Christian Müller
-
Software Integration Specialist
Apache Camel committer: https://camel.apache.org/team
V.P. Apache Camel: https://www.apache.org/foundation/
Apache Member: https://www.apache.org/foundation/members.html
https://www.linkedin.com
Hi
Yeah all the setOut is @deprecated as you should just use setBody /
setHeader etc.
So this is on purpose why there is no in the XML DSL
On Thu, Jun 6, 2013 at 5:52 PM, Antoine DESSAIGNE
wrote:
> Hi everyone,
>
> I didn't found the XML tag and I was wondering whether there
> was a reason for
Hi everyone,
I didn't found the XML tag and I was wondering whether there
was a reason for that ?
Otherwise, I will submit a patch for fixing this gap.
Thanks a lot,
Antoine.
Hi
Just in case you make use of eclipse together with Java 6 while hacking on
the Camel source itself then there's a tip about this I've added to the
Wiki which could be of your interest:
http://camel.apache.org/building.html
Babak