Re: Good practice - When doing pull to get latest source code updates

2013-06-06 Thread Chris Geer
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?

camel pull request: CAMEL-5829

2013-06-06 Thread NersesAM
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

Re: Good practice - When doing pull to get latest source code updates

2013-06-06 Thread Christian Müller
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

Re: Feature request: support setOutBody in XML definitions

2013-06-06 Thread Claus Ibsen
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

Feature request: support setOutBody in XML definitions

2013-06-06 Thread Antoine DESSAIGNE
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.

When using eclipse together with Java 6

2013-06-06 Thread Babak Vahdat
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