Re: Camel 3.7.3 Release

2021-03-02 Thread Claus Ibsen
Hi Gregor

You are welcome to begin the release process anytime you like.
We are not waiting for any particular fixes, and all JIRAs with 3.7.3
as target has been resolved.


On Tue, Mar 2, 2021 at 9:18 PM Gregor Zurowski  wrote:
>
> +1
>
> Sure, works for me. I can start the release process any time. Are we
> waiting for any particular fixes before we start?
>
>
> On Tue, Mar 2, 2021, 10:11 AM Claus Ibsen  wrote:
>
> > Hi
> >
> > I think we have a good number of fixes already, so we should get a new
> > 3.7.3 release out this month, maybe in 1 or 2 weeks time.
> >
> > Gregor any thoughts?
> >
> >
> >
> > --
> > Claus Ibsen
> > -
> > http://davsclaus.com @davsclaus
> > Camel in Action 2: https://www.manning.com/ibsen2
> >



-- 
Claus Ibsen
-
http://davsclaus.com @davsclaus
Camel in Action 2: https://www.manning.com/ibsen2


Re: Camel 3.7.3 Release

2021-03-02 Thread Gregor Zurowski
+1

Sure, works for me. I can start the release process any time. Are we
waiting for any particular fixes before we start?


On Tue, Mar 2, 2021, 10:11 AM Claus Ibsen  wrote:

> Hi
>
> I think we have a good number of fixes already, so we should get a new
> 3.7.3 release out this month, maybe in 1 or 2 weeks time.
>
> Gregor any thoughts?
>
>
>
> --
> Claus Ibsen
> -
> http://davsclaus.com @davsclaus
> Camel in Action 2: https://www.manning.com/ibsen2
>


Re: [camel] branch camel-3.8.x updated: [CAMEL-16063]don't start camel context if event is from the self management ApplicationContext

2021-03-02 Thread Freeman Fang
Got it, thanks for the clarification!
Freeman

On Tue, Mar 2, 2021 at 9:25 AM Andrea Cosentino  wrote:

> This is not needed, 3.8.x won't be released anymore, it's not an LTS. No
> need to revert, but just to avoid confusion.
>
> Il giorno mar 2 mar 2021 alle ore 15:19  ha scritto:
>
> > This is an automated email from the ASF dual-hosted git repository.
> >
> > ffang pushed a commit to branch camel-3.8.x
> > in repository https://gitbox.apache.org/repos/asf/camel.git
> >
> >
> > The following commit(s) were added to refs/heads/camel-3.8.x by this
> push:
> >  new 7ef2913  [CAMEL-16063]don't start camel context if event is from
> > the self management ApplicationContext
> > 7ef2913 is described below
> >
> > commit 7ef2913089f6f5307ad2d75092f0e54421892928
> > Author: Freeman Fang 
> > AuthorDate: Tue Mar 2 09:18:52 2021 -0500
> >
> > [CAMEL-16063]don't start camel context if event is from the self
> > management ApplicationContext
> > ---
> >  .../java/org/apache/camel/spring/CamelContextFactoryBean.java | 8
> > 
> >  1 file changed, 8 insertions(+)
> >
> > diff --git
> >
> a/components/camel-spring/src/main/java/org/apache/camel/spring/CamelContextFactoryBean.java
> >
> b/components/camel-spring/src/main/java/org/apache/camel/spring/CamelContextFactoryBean.java
> > index e91072e..43f4529 100644
> > ---
> >
> a/components/camel-spring/src/main/java/org/apache/camel/spring/CamelContextFactoryBean.java
> > +++
> >
> b/components/camel-spring/src/main/java/org/apache/camel/spring/CamelContextFactoryBean.java
> > @@ -462,6 +462,14 @@ public class CamelContextFactoryBean extends
> > AbstractCamelContextFactoryBean >  // being started/refreshed, there could be a race condition with
> >  // other ApplicationListeners that react to
> >  // ContextRefreshedEvent but this is the best that we can do
> > +if (event.getSource() instanceof ApplicationContext) {
> > +ApplicationContext appCtx = (ApplicationContext)
> > event.getSource();
> > +if (appCtx.getId().equals("application:management")) {
> > +//don't start camel context if
> > +//event is from the self management ApplicationContext
> > +return;
> > +}
> > +}
> >  start();
> >  }
> >
> >
> >
>


Re: [camel] branch camel-3.8.x updated: [CAMEL-16063]don't start camel context if event is from the self management ApplicationContext

2021-03-02 Thread Andrea Cosentino
This is not needed, 3.8.x won't be released anymore, it's not an LTS. No
need to revert, but just to avoid confusion.

Il giorno mar 2 mar 2021 alle ore 15:19  ha scritto:

> This is an automated email from the ASF dual-hosted git repository.
>
> ffang pushed a commit to branch camel-3.8.x
> in repository https://gitbox.apache.org/repos/asf/camel.git
>
>
> The following commit(s) were added to refs/heads/camel-3.8.x by this push:
>  new 7ef2913  [CAMEL-16063]don't start camel context if event is from
> the self management ApplicationContext
> 7ef2913 is described below
>
> commit 7ef2913089f6f5307ad2d75092f0e54421892928
> Author: Freeman Fang 
> AuthorDate: Tue Mar 2 09:18:52 2021 -0500
>
> [CAMEL-16063]don't start camel context if event is from the self
> management ApplicationContext
> ---
>  .../java/org/apache/camel/spring/CamelContextFactoryBean.java | 8
> 
>  1 file changed, 8 insertions(+)
>
> diff --git
> a/components/camel-spring/src/main/java/org/apache/camel/spring/CamelContextFactoryBean.java
> b/components/camel-spring/src/main/java/org/apache/camel/spring/CamelContextFactoryBean.java
> index e91072e..43f4529 100644
> ---
> a/components/camel-spring/src/main/java/org/apache/camel/spring/CamelContextFactoryBean.java
> +++
> b/components/camel-spring/src/main/java/org/apache/camel/spring/CamelContextFactoryBean.java
> @@ -462,6 +462,14 @@ public class CamelContextFactoryBean extends
> AbstractCamelContextFactoryBean  // being started/refreshed, there could be a race condition with
>  // other ApplicationListeners that react to
>  // ContextRefreshedEvent but this is the best that we can do
> +if (event.getSource() instanceof ApplicationContext) {
> +ApplicationContext appCtx = (ApplicationContext)
> event.getSource();
> +if (appCtx.getId().equals("application:management")) {
> +//don't start camel context if
> +//event is from the self management ApplicationContext
> +return;
> +}
> +}
>  start();
>  }
>
>
>


Re: Camel 3.7.3 Release

2021-03-02 Thread Andrea Cosentino
+1

Il giorno mar 2 mar 2021 alle ore 10:18 Omar Al-Safi  ha
scritto:

> yeah I'd say +1
>
> Regards
>
> On Tue, Mar 2, 2021 at 10:11 AM Claus Ibsen  wrote:
>
> > Hi
> >
> > I think we have a good number of fixes already, so we should get a new
> > 3.7.3 release out this month, maybe in 1 or 2 weeks time.
> >
> > Gregor any thoughts?
> >
> >
> >
> > --
> > Claus Ibsen
> > -
> > http://davsclaus.com @davsclaus
> > Camel in Action 2: https://www.manning.com/ibsen2
> >
>


Re: Camel 3.7.3 Release

2021-03-02 Thread Omar Al-Safi
yeah I'd say +1

Regards

On Tue, Mar 2, 2021 at 10:11 AM Claus Ibsen  wrote:

> Hi
>
> I think we have a good number of fixes already, so we should get a new
> 3.7.3 release out this month, maybe in 1 or 2 weeks time.
>
> Gregor any thoughts?
>
>
>
> --
> Claus Ibsen
> -
> http://davsclaus.com @davsclaus
> Camel in Action 2: https://www.manning.com/ibsen2
>


Camel 3.7.3 Release

2021-03-02 Thread Claus Ibsen
Hi

I think we have a good number of fixes already, so we should get a new
3.7.3 release out this month, maybe in 1 or 2 weeks time.

Gregor any thoughts?



-- 
Claus Ibsen
-
http://davsclaus.com @davsclaus
Camel in Action 2: https://www.manning.com/ibsen2