[jira] [Updated] (CAMEL-18406) camel-jbang - CLI to control routes such as suspend/resume/stats

2022-08-24 Thread Claus Ibsen (Jira)


 [ 
https://issues.apache.org/jira/browse/CAMEL-18406?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Claus Ibsen updated CAMEL-18406:

Description: 
It would be good if we could

- control routes such as start/stop/suspend/resume
- context statistics *DONE*
- route statistics so you can see their state, number of messages processed etc 
*DONE*
- show health check status as well in the get commands *DONE*



  was:
It would be good if we could

- control routes such as start/stop/suspend/resume
- context statistics *DONE*
- route statistics so you can see their state, number of messages processed etc 
*DONE*
- show health check status as well in the get commands




> camel-jbang - CLI to control routes such as suspend/resume/stats
> 
>
> Key: CAMEL-18406
> URL: https://issues.apache.org/jira/browse/CAMEL-18406
> Project: Camel
>  Issue Type: Improvement
>  Components: camel-jbang
>Reporter: Claus Ibsen
>Assignee: Claus Ibsen
>Priority: Major
> Fix For: 3.19.0
>
>
> It would be good if we could
> - control routes such as start/stop/suspend/resume
> - context statistics *DONE*
> - route statistics so you can see their state, number of messages processed 
> etc *DONE*
> - show health check status as well in the get commands *DONE*



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Updated] (CAMEL-18428) Fhir component documentation describes the option password as the Username

2022-08-24 Thread Claus Ibsen (Jira)


 [ 
https://issues.apache.org/jira/browse/CAMEL-18428?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Claus Ibsen updated CAMEL-18428:

Issue Type: Task  (was: Bug)

> Fhir component documentation describes the option password as the Username
> --
>
> Key: CAMEL-18428
> URL: https://issues.apache.org/jira/browse/CAMEL-18428
> Project: Camel
>  Issue Type: Task
>  Components: camel-fhir
>Affects Versions: 3.18.1
>Reporter: Pedro
>Priority: Trivial
>  Labels: documentation
>
> Fhir component documentation describes the option/query parameter "password" 
> as the "Username to use for basic authentication." instead of the "Password 
> to use for basic authentication."



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Updated] (CAMEL-18428) Fhir component documentation describes the option password as the Username

2022-08-24 Thread Claus Ibsen (Jira)


 [ 
https://issues.apache.org/jira/browse/CAMEL-18428?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Claus Ibsen updated CAMEL-18428:

Fix Version/s: 3.18.2
   3.19.0

> Fhir component documentation describes the option password as the Username
> --
>
> Key: CAMEL-18428
> URL: https://issues.apache.org/jira/browse/CAMEL-18428
> Project: Camel
>  Issue Type: Task
>  Components: camel-fhir
>Affects Versions: 3.18.1
>Reporter: Pedro
>Priority: Trivial
>  Labels: documentation
> Fix For: 3.18.2, 3.19.0
>
>
> Fhir component documentation describes the option/query parameter "password" 
> as the "Username to use for basic authentication." instead of the "Password 
> to use for basic authentication."



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Created] (CAMEL-18428) Fhir component documentation describes the option password as the Username

2022-08-24 Thread Pedro (Jira)
Pedro created CAMEL-18428:
-

 Summary: Fhir component documentation describes the option 
password as the Username
 Key: CAMEL-18428
 URL: https://issues.apache.org/jira/browse/CAMEL-18428
 Project: Camel
  Issue Type: Bug
  Components: camel-fhir
Affects Versions: 3.18.1
Reporter: Pedro


Fhir component documentation describes the option/query parameter "password" as 
the "Username to use for basic authentication." instead of the "Password to use 
for basic authentication."



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Updated] (CAMEL-18427) Camel Debezium with Postgres on Spring Boot doesn't work

2022-08-24 Thread michael elbaz (Jira)


 [ 
https://issues.apache.org/jira/browse/CAMEL-18427?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

michael elbaz updated CAMEL-18427:
--
Description: 
>From camel 3.13.0 Camel Debezium simply not working is work perfectly with 
>camel older than 3.13.0

(related to this ticket i think 
https://issues.apache.org/jira/browse/CAMEL-17135)

here the code
{code:java}
@Override
public void configure() throws Exception {
String DATABASE_READER = "debezium-postgres:localhost?"
+ "databaseHostname=localhost"
+ "=5432"
+ "=postgres"
+ "=test"
+ "=test"
+ "=localhost"
+ "=public"
+ "=public.*"
+ "=/tmp/offset-file-1.dat"
+ "=1"
+ "=pgoutput";
from(DATABASE_READER)
.routeId("debeziumPGRoute")
.log("Response : ${body}");
}
{code}
!image-2022-08-24-12-12-27-542.png|width=949,height=240!

I check this [changelog|https://camel.apache.org/releases/release-3.13.0/]
!image-2022-08-24-12-19-55-853.png|width=803,height=402!

the pom file
{code:java}

org.apache.camel
camel-debezium-postgres


org.apache.camel.springboot
camel-debezium-postgres-starter
{code}

  was:
>From camel 3.13.0 Camel Debezium simply not working is work perfectly with 
>camel older than 3.13.0

here the code
{code:java}
@Override
public void configure() throws Exception {
String DATABASE_READER = "debezium-postgres:localhost?"
+ "databaseHostname=localhost"
+ "=5432"
+ "=postgres"
+ "=test"
+ "=test"
+ "=localhost"
+ "=public"
+ "=public.*"
+ "=/tmp/offset-file-1.dat"
+ "=1"
+ "=pgoutput";
from(DATABASE_READER)
.routeId("debeziumPGRoute")
.log("Response : ${body}");
}
{code}
!image-2022-08-24-12-12-27-542.png|width=949,height=240!

I check this [changelog|https://camel.apache.org/releases/release-3.13.0/] 
(related to this ticket i think 
https://issues.apache.org/jira/browse/CAMEL-17135)
!image-2022-08-24-12-19-55-853.png|width=803,height=402!

the pom file
{code:java}

org.apache.camel
camel-debezium-postgres


org.apache.camel.springboot
camel-debezium-postgres-starter
{code}


> Camel Debezium with Postgres on Spring Boot doesn't work
> 
>
> Key: CAMEL-18427
> URL: https://issues.apache.org/jira/browse/CAMEL-18427
> Project: Camel
>  Issue Type: Bug
>  Components: camel-debezium
>Affects Versions: 3.13.0, 3.18.1
> Environment: Jdk 17
> Windows 10
> Spring boot
>Reporter: michael elbaz
>Priority: Major
> Attachments: image-2022-08-24-12-12-27-542.png, 
> image-2022-08-24-12-19-55-853.png
>
>
> From camel 3.13.0 Camel Debezium simply not working is work perfectly with 
> camel older than 3.13.0
> (related to this ticket i think 
> https://issues.apache.org/jira/browse/CAMEL-17135)
> here the code
> {code:java}
> @Override
> public void configure() throws Exception {
> String DATABASE_READER = "debezium-postgres:localhost?"
> + "databaseHostname=localhost"
> + "=5432"
> + "=postgres"
> + "=test"
> + "=test"
> + "=localhost"
> + "=public"
> + "=public.*"
> + "=/tmp/offset-file-1.dat"
> + "=1"
> + "=pgoutput";
> from(DATABASE_READER)
> .routeId("debeziumPGRoute")
> .log("Response : ${body}");
> }
> {code}
> !image-2022-08-24-12-12-27-542.png|width=949,height=240!
> I check this [changelog|https://camel.apache.org/releases/release-3.13.0/]
> !image-2022-08-24-12-19-55-853.png|width=803,height=402!
> the pom file
> {code:java}
> 
> org.apache.camel
> camel-debezium-postgres
> 
> 
> org.apache.camel.springboot
> camel-debezium-postgres-starter
> {code}



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Updated] (CAMEL-18427) Camel Debezium with Postgres on Spring Boot doesn't work

2022-08-24 Thread michael elbaz (Jira)


 [ 
https://issues.apache.org/jira/browse/CAMEL-18427?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

michael elbaz updated CAMEL-18427:
--
Description: 
>From camel 3.13.0 Camel Debezium simply not working is work perfectly with 
>camel older than 3.13.0

here the code
{code:java}
@Override
public void configure() throws Exception {
String DATABASE_READER = "debezium-postgres:localhost?"
+ "databaseHostname=localhost"
+ "=5432"
+ "=postgres"
+ "=test"
+ "=test"
+ "=localhost"
+ "=public"
+ "=public.*"
+ "=/tmp/offset-file-1.dat"
+ "=1"
+ "=pgoutput";
from(DATABASE_READER)
.routeId("debeziumPGRoute")
.log("Response : ${body}");
}
{code}
!image-2022-08-24-12-12-27-542.png|width=949,height=240!

I check this [changelog|https://camel.apache.org/releases/release-3.13.0/] 
(related to this ticket i think 
https://issues.apache.org/jira/browse/CAMEL-17135)
!image-2022-08-24-12-19-55-853.png|width=803,height=402!

the pom file
{code:java}

org.apache.camel
camel-debezium-postgres


org.apache.camel.springboot
camel-debezium-postgres-starter
{code}

  was:
>From camel 3.13.0 Camel Debezium simply not working is work perfectly with 
>camel older than 3.13.0

here the code
{code:java}
@Override
public void configure() throws Exception {
String DATABASE_READER = "debezium-postgres:localhost?"
+ "databaseHostname=localhost"
+ "=5432"
+ "=postgres"
+ "=test"
+ "=test"
+ "=localhost"
+ "=public"
+ "=public.*"
+ "=/tmp/offset-file-1.dat"
+ "=1"
+ "=pgoutput";
from(DATABASE_READER)
.routeId("debeziumPGRoute")
.log("Response : ${body}");
}
{code}
!image-2022-08-24-12-12-27-542.png|width=949,height=240!

I check this [changelog|https://camel.apache.org/releases/release-3.13.0/]
!image-2022-08-24-12-19-55-853.png|width=803,height=402!

the pom file:
{code:java}

org.apache.camel
camel-debezium-postgres


org.apache.camel.springboot
camel-debezium-postgres-starter
{code}


> Camel Debezium with Postgres on Spring Boot doesn't work
> 
>
> Key: CAMEL-18427
> URL: https://issues.apache.org/jira/browse/CAMEL-18427
> Project: Camel
>  Issue Type: Bug
>  Components: camel-debezium
>Affects Versions: 3.13.0, 3.18.1
> Environment: Jdk 17
> Windows 10
> Spring boot
>Reporter: michael elbaz
>Priority: Major
> Attachments: image-2022-08-24-12-12-27-542.png, 
> image-2022-08-24-12-19-55-853.png
>
>
> From camel 3.13.0 Camel Debezium simply not working is work perfectly with 
> camel older than 3.13.0
> here the code
> {code:java}
> @Override
> public void configure() throws Exception {
> String DATABASE_READER = "debezium-postgres:localhost?"
> + "databaseHostname=localhost"
> + "=5432"
> + "=postgres"
> + "=test"
> + "=test"
> + "=localhost"
> + "=public"
> + "=public.*"
> + "=/tmp/offset-file-1.dat"
> + "=1"
> + "=pgoutput";
> from(DATABASE_READER)
> .routeId("debeziumPGRoute")
> .log("Response : ${body}");
> }
> {code}
> !image-2022-08-24-12-12-27-542.png|width=949,height=240!
> I check this [changelog|https://camel.apache.org/releases/release-3.13.0/] 
> (related to this ticket i think 
> https://issues.apache.org/jira/browse/CAMEL-17135)
> !image-2022-08-24-12-19-55-853.png|width=803,height=402!
> the pom file
> {code:java}
> 
> org.apache.camel
> camel-debezium-postgres
> 
> 
> org.apache.camel.springboot
> camel-debezium-postgres-starter
> {code}



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Reopened] (CAMEL-17135) camel-debezium-mongodb-starter does not pupulate values from application.properties

2022-08-24 Thread Andrea Cosentino (Jira)


 [ 
https://issues.apache.org/jira/browse/CAMEL-17135?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Andrea Cosentino reopened CAMEL-17135:
--

> camel-debezium-mongodb-starter does not pupulate values from 
> application.properties
> ---
>
> Key: CAMEL-17135
> URL: https://issues.apache.org/jira/browse/CAMEL-17135
> Project: Camel
>  Issue Type: Bug
>  Components: camel-debezium
>Affects Versions: 3.11.3
> Environment: Ubuntu 20.04
> jdk 11
>Reporter: Andrii Melashchenko
>Assignee: Claus Ibsen
>Priority: Major
> Fix For: 3.13.0, 3.11.4
>
>
> When trying to build simple route
> from({color:#6a8759}"debezium-mongodb:meteor"{color})
> with spring-boot properties
> ```
> {color:#cc7832}camel.component.debezium-mongodb.mongodb-hosts{color}{color:#808080}={color}{color:#6a8759}localhost:3001
> {color}{color:#cc7832}camel.component.debezium-mongodb.mongodb-user{color}{color:#808080}={color}{color:#6a8759}test
> {color}{color:#cc7832}camel.component.debezium-mongodb.mongodb-password{color}{color:#808080}={color}{color:#6a8759}test
> {color}{color:#cc7832}camel.component.debezium-mongodb.mongodb-name{color}{color:#808080}={color}{color:#6a8759}test
> {color}{color:#cc7832}camel.component.debezium-mongodb.offset-storage-file-filename{color}{color:#808080}={color}{color:#6a8759}/tmp/offset-file-1.dat
> {color}{color:#cc7832}camel.component.debezium-mongodb.database-history-file-filename{color}{color:#808080}={color}{color:#6a8759}/tmp/history-file-1.dat
> {color}
> ```
> Route fails with error 
> ```
> Required field 'offsetStorageFileName' must be set since 'offsetStorage' is 
> set to
> ```



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Updated] (CAMEL-18427) Camel Debezium with Postgres on Spring Boot doesn't work

2022-08-24 Thread michael elbaz (Jira)


 [ 
https://issues.apache.org/jira/browse/CAMEL-18427?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

michael elbaz updated CAMEL-18427:
--
Description: 
>From camel 3.13.0 Camel Debezium simply not working is work perfectly with 
>camel older than 3.13.0

here the code
{code:java}
@Override
public void configure() throws Exception {
String DATABASE_READER = "debezium-postgres:localhost?"
+ "databaseHostname=localhost"
+ "=5432"
+ "=postgres"
+ "=test"
+ "=test"
+ "=localhost"
+ "=public"
+ "=public.*"
+ "=/tmp/offset-file-1.dat"
+ "=1"
+ "=pgoutput";
from(DATABASE_READER)
.routeId("debeziumPGRoute")
.log("Response : ${body}");
}
{code}
!image-2022-08-24-12-12-27-542.png|width=949,height=240!

I check this [changelog|https://camel.apache.org/releases/release-3.13.0/]
!image-2022-08-24-12-19-55-853.png|width=803,height=402!

the pom file:
{code:java}

org.apache.camel
camel-debezium-postgres


org.apache.camel.springboot
camel-debezium-postgres-starter
{code}

  was:
>From camel 3.13.0 Camel Debezium simply not working is work perfectly with 
>camel older than 3.13.0

here the code
{code:java}
@Override
public void configure() throws Exception {
String DATABASE_READER = "debezium-postgres:localhost?"
+ "databaseHostname=localhost"
+ "=5432"
+ "=postgres"
+ "=test"
+ "=test"
+ "=localhost"
+ "=public"
+ "=public.*"
+ "=/tmp/offset-file-1.dat"
+ "=1"
+ "=pgoutput";
from(DATABASE_READER)
.routeId("debeziumPGRoute")
.log("Response : ${body}");
}
{code}
!image-2022-08-24-12-12-27-542.png|width=949,height=240!

I check this [changelog|https://camel.apache.org/releases/release-3.13.0/]
!image-2022-08-24-12-19-55-853.png|width=803,height=402!

the pom file:
{code:java}

org.apache.camel
camel-debezium-common


org.apache.camel
camel-debezium-postgres
 {code}


> Camel Debezium with Postgres on Spring Boot doesn't work
> 
>
> Key: CAMEL-18427
> URL: https://issues.apache.org/jira/browse/CAMEL-18427
> Project: Camel
>  Issue Type: Bug
>  Components: camel-debezium
>Affects Versions: 3.13.0, 3.18.1
> Environment: Jdk 17
> Windows 10
> Spring boot
>Reporter: michael elbaz
>Priority: Major
> Attachments: image-2022-08-24-12-12-27-542.png, 
> image-2022-08-24-12-19-55-853.png
>
>
> From camel 3.13.0 Camel Debezium simply not working is work perfectly with 
> camel older than 3.13.0
> here the code
> {code:java}
> @Override
> public void configure() throws Exception {
> String DATABASE_READER = "debezium-postgres:localhost?"
> + "databaseHostname=localhost"
> + "=5432"
> + "=postgres"
> + "=test"
> + "=test"
> + "=localhost"
> + "=public"
> + "=public.*"
> + "=/tmp/offset-file-1.dat"
> + "=1"
> + "=pgoutput";
> from(DATABASE_READER)
> .routeId("debeziumPGRoute")
> .log("Response : ${body}");
> }
> {code}
> !image-2022-08-24-12-12-27-542.png|width=949,height=240!
> I check this [changelog|https://camel.apache.org/releases/release-3.13.0/]
> !image-2022-08-24-12-19-55-853.png|width=803,height=402!
> the pom file:
> {code:java}
> 
> org.apache.camel
> camel-debezium-postgres
> 
> 
> org.apache.camel.springboot
> camel-debezium-postgres-starter
> {code}



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Updated] (CAMEL-18427) Camel Debezium with Postgres on Spring Boot doesn't work

2022-08-24 Thread michael elbaz (Jira)


 [ 
https://issues.apache.org/jira/browse/CAMEL-18427?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

michael elbaz updated CAMEL-18427:
--
Description: 
>From camel 3.13.0 Camel Debezium simply not working is work perfectly with 
>camel older than 3.13.0

here the code
{code:java}
@Override
public void configure() throws Exception {
String DATABASE_READER = "debezium-postgres:localhost?"
+ "databaseHostname=localhost"
+ "=5432"
+ "=postgres"
+ "=test"
+ "=test"
+ "=localhost"
+ "=public"
+ "=public.*"
+ "=/tmp/offset-file-1.dat"
+ "=1"
+ "=pgoutput";
from(DATABASE_READER)
.routeId("debeziumPGRoute")
.log("Response : ${body}");
}
{code}
!image-2022-08-24-12-12-27-542.png|width=949,height=240!

I check this [changelog|https://camel.apache.org/releases/release-3.13.0/]
!image-2022-08-24-12-19-55-853.png|width=803,height=402!

the pom file:
{code:java}

org.apache.camel
camel-debezium-common


org.apache.camel
camel-debezium-postgres
 {code}

  was:
>From camel 3.13.0 Camel Debezium simply not working is work perfectly with 
>camel older than 3.13.0

here the code
{code:java}
@Override
public void configure() throws Exception {
String DATABASE_READER = "debezium-postgres:localhost?"
+ "databaseHostname=localhost"
+ "=5432"
+ "=postgres"
+ "=test"
+ "=test"
+ "=localhost"
+ "=public"
+ "=public.*"
+ "=/tmp/offset-file-1.dat"
+ "=1"
+ "=pgoutput";
from(DATABASE_READER)
.routeId("debeziumPGRoute")
.log("Response : ${body}");
}
{code}
!image-2022-08-24-12-12-27-542.png|width=949,height=240!

I check this [changelog|https://camel.apache.org/releases/release-3.13.0/]
!image-2022-08-24-12-19-55-853.png|width=803,height=402!


> Camel Debezium with Postgres on Spring Boot doesn't work
> 
>
> Key: CAMEL-18427
> URL: https://issues.apache.org/jira/browse/CAMEL-18427
> Project: Camel
>  Issue Type: Bug
>  Components: camel-debezium
>Affects Versions: 3.13.0, 3.18.1
> Environment: Jdk 17
> Windows 10
> Spring boot
>Reporter: michael elbaz
>Priority: Major
> Attachments: image-2022-08-24-12-12-27-542.png, 
> image-2022-08-24-12-19-55-853.png
>
>
> From camel 3.13.0 Camel Debezium simply not working is work perfectly with 
> camel older than 3.13.0
> here the code
> {code:java}
> @Override
> public void configure() throws Exception {
> String DATABASE_READER = "debezium-postgres:localhost?"
> + "databaseHostname=localhost"
> + "=5432"
> + "=postgres"
> + "=test"
> + "=test"
> + "=localhost"
> + "=public"
> + "=public.*"
> + "=/tmp/offset-file-1.dat"
> + "=1"
> + "=pgoutput";
> from(DATABASE_READER)
> .routeId("debeziumPGRoute")
> .log("Response : ${body}");
> }
> {code}
> !image-2022-08-24-12-12-27-542.png|width=949,height=240!
> I check this [changelog|https://camel.apache.org/releases/release-3.13.0/]
> !image-2022-08-24-12-19-55-853.png|width=803,height=402!
> the pom file:
> {code:java}
> 
> org.apache.camel
> camel-debezium-common
> 
> 
> org.apache.camel
> camel-debezium-postgres
>  {code}



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Updated] (CAMEL-18427) Camel Debezium with Postgres on Spring Boot doesn't work

2022-08-24 Thread michael elbaz (Jira)


 [ 
https://issues.apache.org/jira/browse/CAMEL-18427?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

michael elbaz updated CAMEL-18427:
--
Affects Version/s: 3.18.1

> Camel Debezium with Postgres on Spring Boot doesn't work
> 
>
> Key: CAMEL-18427
> URL: https://issues.apache.org/jira/browse/CAMEL-18427
> Project: Camel
>  Issue Type: Bug
>  Components: camel-debezium
>Affects Versions: 3.13.0, 3.18.1
> Environment: Jdk 17
> Windows 10
> Spring boot
>Reporter: michael elbaz
>Priority: Major
> Attachments: image-2022-08-24-12-12-27-542.png, 
> image-2022-08-24-12-19-55-853.png
>
>
> From camel 3.13.0 Camel Debezium simply not working is work perfectly with 
> camel older than 3.13.0
> here the code
> {code:java}
> @Override
> public void configure() throws Exception {
> String DATABASE_READER = "debezium-postgres:localhost?"
> + "databaseHostname=localhost"
> + "=5432"
> + "=postgres"
> + "=test"
> + "=test"
> + "=localhost"
> + "=public"
> + "=public.*"
> + "=/tmp/offset-file-1.dat"
> + "=1"
> + "=pgoutput";
> from(DATABASE_READER)
> .routeId("debeziumPGRoute")
> .log("Response : ${body}");
> }
> {code}
> !image-2022-08-24-12-12-27-542.png|width=949,height=240!
> I check this [changelog|https://camel.apache.org/releases/release-3.13.0/]
> !image-2022-08-24-12-19-55-853.png|width=803,height=402!



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Comment Edited] (CAMEL-17135) camel-debezium-mongodb-starter does not pupulate values from application.properties

2022-08-24 Thread michael elbaz (Jira)


[ 
https://issues.apache.org/jira/browse/CAMEL-17135?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17584231#comment-17584231
 ] 

michael elbaz edited comment on CAMEL-17135 at 8/24/22 1:06 PM:


It is not fixed using 3.12.0 and worse than that the component doesn't work 
since 3.13.0 modifications check this for more informations 
https://issues.apache.org/jira/browse/CAMEL-18427


was (Author: michael992):
It is not fixed using 3.12.0 and worse than that the component doesn't work 
since 3.13.0 modifications

> camel-debezium-mongodb-starter does not pupulate values from 
> application.properties
> ---
>
> Key: CAMEL-17135
> URL: https://issues.apache.org/jira/browse/CAMEL-17135
> Project: Camel
>  Issue Type: Bug
>  Components: camel-debezium
>Affects Versions: 3.11.3
> Environment: Ubuntu 20.04
> jdk 11
>Reporter: Andrii Melashchenko
>Assignee: Claus Ibsen
>Priority: Major
> Fix For: 3.13.0, 3.11.4
>
>
> When trying to build simple route
> from({color:#6a8759}"debezium-mongodb:meteor"{color})
> with spring-boot properties
> ```
> {color:#cc7832}camel.component.debezium-mongodb.mongodb-hosts{color}{color:#808080}={color}{color:#6a8759}localhost:3001
> {color}{color:#cc7832}camel.component.debezium-mongodb.mongodb-user{color}{color:#808080}={color}{color:#6a8759}test
> {color}{color:#cc7832}camel.component.debezium-mongodb.mongodb-password{color}{color:#808080}={color}{color:#6a8759}test
> {color}{color:#cc7832}camel.component.debezium-mongodb.mongodb-name{color}{color:#808080}={color}{color:#6a8759}test
> {color}{color:#cc7832}camel.component.debezium-mongodb.offset-storage-file-filename{color}{color:#808080}={color}{color:#6a8759}/tmp/offset-file-1.dat
> {color}{color:#cc7832}camel.component.debezium-mongodb.database-history-file-filename{color}{color:#808080}={color}{color:#6a8759}/tmp/history-file-1.dat
> {color}
> ```
> Route fails with error 
> ```
> Required field 'offsetStorageFileName' must be set since 'offsetStorage' is 
> set to
> ```



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Updated] (CAMEL-18427) Camel Debezium with Postgres on Spring Boot doesn't work

2022-08-24 Thread Andrea Cosentino (Jira)


 [ 
https://issues.apache.org/jira/browse/CAMEL-18427?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Andrea Cosentino updated CAMEL-18427:
-
Summary: Camel Debezium with Postgres on Spring Boot doesn't work  (was: 
Camel Debezium with Postgres)

> Camel Debezium with Postgres on Spring Boot doesn't work
> 
>
> Key: CAMEL-18427
> URL: https://issues.apache.org/jira/browse/CAMEL-18427
> Project: Camel
>  Issue Type: Bug
>  Components: camel-debezium
>Affects Versions: 3.13.0
> Environment: Jdk 17
> Windows 10
> Spring boot
>Reporter: michael elbaz
>Priority: Major
> Attachments: image-2022-08-24-12-12-27-542.png, 
> image-2022-08-24-12-19-55-853.png
>
>
> From camel 3.13.0 Camel Debezium simply not working is work perfectly with 
> camel older than 3.13.0
> here the code
> {code:java}
> @Override
> public void configure() throws Exception {
> String DATABASE_READER = "debezium-postgres:localhost?"
> + "databaseHostname=localhost"
> + "=5432"
> + "=postgres"
> + "=test"
> + "=test"
> + "=localhost"
> + "=public"
> + "=public.*"
> + "=/tmp/offset-file-1.dat"
> + "=1"
> + "=pgoutput";
> from(DATABASE_READER)
> .routeId("debeziumPGRoute")
> .log("Response : ${body}");
> }
> {code}
> !image-2022-08-24-12-12-27-542.png|width=949,height=240!
> I check this [changelog|https://camel.apache.org/releases/release-3.13.0/]
> !image-2022-08-24-12-19-55-853.png|width=803,height=402!



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Commented] (CAMEL-17135) camel-debezium-mongodb-starter does not pupulate values from application.properties

2022-08-24 Thread michael elbaz (Jira)


[ 
https://issues.apache.org/jira/browse/CAMEL-17135?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17584231#comment-17584231
 ] 

michael elbaz commented on CAMEL-17135:
---

It is not fixed using 3.12.0 and worse than that the component doesn't work 
since 3.13.0 modifications

> camel-debezium-mongodb-starter does not pupulate values from 
> application.properties
> ---
>
> Key: CAMEL-17135
> URL: https://issues.apache.org/jira/browse/CAMEL-17135
> Project: Camel
>  Issue Type: Bug
>  Components: camel-debezium
>Affects Versions: 3.11.3
> Environment: Ubuntu 20.04
> jdk 11
>Reporter: Andrii Melashchenko
>Assignee: Claus Ibsen
>Priority: Major
> Fix For: 3.13.0, 3.11.4
>
>
> When trying to build simple route
> from({color:#6a8759}"debezium-mongodb:meteor"{color})
> with spring-boot properties
> ```
> {color:#cc7832}camel.component.debezium-mongodb.mongodb-hosts{color}{color:#808080}={color}{color:#6a8759}localhost:3001
> {color}{color:#cc7832}camel.component.debezium-mongodb.mongodb-user{color}{color:#808080}={color}{color:#6a8759}test
> {color}{color:#cc7832}camel.component.debezium-mongodb.mongodb-password{color}{color:#808080}={color}{color:#6a8759}test
> {color}{color:#cc7832}camel.component.debezium-mongodb.mongodb-name{color}{color:#808080}={color}{color:#6a8759}test
> {color}{color:#cc7832}camel.component.debezium-mongodb.offset-storage-file-filename{color}{color:#808080}={color}{color:#6a8759}/tmp/offset-file-1.dat
> {color}{color:#cc7832}camel.component.debezium-mongodb.database-history-file-filename{color}{color:#808080}={color}{color:#6a8759}/tmp/history-file-1.dat
> {color}
> ```
> Route fails with error 
> ```
> Required field 'offsetStorageFileName' must be set since 'offsetStorage' is 
> set to
> ```



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Updated] (CAMEL-18427) Camel Debezium with Postgres

2022-08-24 Thread michael elbaz (Jira)


 [ 
https://issues.apache.org/jira/browse/CAMEL-18427?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

michael elbaz updated CAMEL-18427:
--
Environment: 
Jdk 17

Windows 10

Spring boot

  was:
Jdk 17

Windows 10


> Camel Debezium with Postgres
> 
>
> Key: CAMEL-18427
> URL: https://issues.apache.org/jira/browse/CAMEL-18427
> Project: Camel
>  Issue Type: Bug
>  Components: camel-debezium
>Affects Versions: 3.13.0
> Environment: Jdk 17
> Windows 10
> Spring boot
>Reporter: michael elbaz
>Priority: Major
> Attachments: image-2022-08-24-12-12-27-542.png, 
> image-2022-08-24-12-19-55-853.png
>
>
> From camel 3.13.0 Camel Debezium simply not working is work perfectly with 
> camel older than 3.13.0
> here the code
> {code:java}
> @Override
> public void configure() throws Exception {
> String DATABASE_READER = "debezium-postgres:localhost?"
> + "databaseHostname=localhost"
> + "=5432"
> + "=postgres"
> + "=test"
> + "=test"
> + "=localhost"
> + "=public"
> + "=public.*"
> + "=/tmp/offset-file-1.dat"
> + "=1"
> + "=pgoutput";
> from(DATABASE_READER)
> .routeId("debeziumPGRoute")
> .log("Response : ${body}");
> }
> {code}
> !image-2022-08-24-12-12-27-542.png|width=949,height=240!
> I check this [changelog|https://camel.apache.org/releases/release-3.13.0/]
> !image-2022-08-24-12-19-55-853.png|width=803,height=402!



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Resolved] (CAMEL-18422) Camel-AWS Component: Explicitly add AWS SDK Utils dependency

2022-08-24 Thread Andrea Cosentino (Jira)


 [ 
https://issues.apache.org/jira/browse/CAMEL-18422?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Andrea Cosentino resolved CAMEL-18422.
--
Resolution: Won't Fix

Superseded by CAMEL-18424

> Camel-AWS Component: Explicitly add AWS SDK Utils dependency 
> -
>
> Key: CAMEL-18422
> URL: https://issues.apache.org/jira/browse/CAMEL-18422
> Project: Camel
>  Issue Type: Task
>Reporter: Andrea Cosentino
>Assignee: Andrea Cosentino
>Priority: Major
> Fix For: 3.18.2, 3.19.0
>
>




--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Reopened] (CAMEL-18422) Camel-AWS Component: Explicitly add AWS SDK Utils dependency

2022-08-24 Thread Andrea Cosentino (Jira)


 [ 
https://issues.apache.org/jira/browse/CAMEL-18422?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Andrea Cosentino reopened CAMEL-18422:
--

> Camel-AWS Component: Explicitly add AWS SDK Utils dependency 
> -
>
> Key: CAMEL-18422
> URL: https://issues.apache.org/jira/browse/CAMEL-18422
> Project: Camel
>  Issue Type: Task
>Reporter: Andrea Cosentino
>Assignee: Andrea Cosentino
>Priority: Major
> Fix For: 3.18.2, 3.19.0
>
>




--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Commented] (CAMEL-18400) jbang does not use correct camel version

2022-08-24 Thread Claus Ibsen (Jira)


[ 
https://issues.apache.org/jira/browse/CAMEL-18400?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17584213#comment-17584213
 ] 

Claus Ibsen commented on CAMEL-18400:
-

All the versions going back to 3.13.0 worked for me

~/workspace/deleteme/yellow ❯ jbang --fresh -Dcamel.jbang.version=3.13.0 
camel@apache/camel run *
   17s
[jbang] Resolving dependencies...
[jbang] Artifacts used for dependency management:
 org.apache.camel:camel-bom:pom:3.13.0
[jbang] org.apache.camel:camel-jbang-core:jar:3.13.0
 org.apache.camel.kamelets:camel-kamelets:jar:0.8.1
 org.apache.camel.kamelets:camel-kamelets-utils:jar:0.8.1
Done
[jbang] Dependencies resolved
[jbang] Building jar...
Starting Camel JBang!
A new lock file was created on 
/Users/davsclaus/workspace/deleteme/yellow/./.run14454802692800644920.camel.lock.
 Delete this file to stop running
13:57:15.735 [main] INFO  org.apache.camel.main.BaseMainSupport - 
Auto-configuration summary
13:57:15.737 [main] INFO  org.apache.camel.main.BaseMainSupport - 
camel.main.lightweight=true
13:57:15.737 [main] INFO  org.apache.camel.main.BaseMainSupport - 
camel.main.routesIncludePattern=file:bar.yaml
13:57:15.737 [main] INFO  org.apache.camel.main.BaseMainSupport - 
camel.main.name=CamelJBang
13:57:15.737 [main] INFO  org.apache.camel.main.BaseMainSupport - 
camel.component.kamelet.location=classpath:/kamelets,github:apache:camel-kamelets
13:57:16.314 [main] INFO  org.apache.camel.impl.engine.AbstractCamelContext - 
Routes startup summary (total:2 started:2)
13:57:16.314 [main] INFO  org.apache.camel.impl.engine.AbstractCamelContext -   
  Started route1 (file-watch://.)
13:57:16.314 [main] INFO  org.apache.camel.impl.engine.AbstractCamelContext -   
  Started route2 (timer://yaml2)
13:57:16.314 [main] INFO  org.apache.camel.impl.engine.AbstractCamelContext - 
Apache Camel 3.13.0 (CamelJBang) started in 558ms (build:18ms init:35ms 
start:505ms)
13:57:16.314 [main] INFO  org.apache.camel.impl.engine.AbstractCamelContext - 
Lightweight mode enabled. Performing optimizations and memory reduction.
13:57:17.328 [Camel (CamelJBang) thread #3 - timer://yaml2] INFO  route2 - 
Hello Camel from yaml
13:57:18.324 [Camel (CamelJBang) thread #3 - timer://yaml2] INFO  route2 - 
Hello Camel from yaml
^C13:57:18.776 [main] INFO  org.apache.camel.impl.engine.AbstractCamelContext - 
Apache Camel 3.13.0 (CamelJBang) shutting down (timeout:45s)
13:57:18.785 [main] INFO  org.apache.camel.impl.engine.AbstractCamelContext - 
Routes shutdown summary (total:2 stopped:2)
13:57:18.785 [main] INFO  org.apache.camel.impl.engine.AbstractCamelContext -   
  Stopped route2 (timer://yaml2)
13:57:18.786 [main] INFO  org.apache.camel.impl.engine.AbstractCamelContext -   
  Stopped route1 (file-watch://.)
13:57:18.787 [main] INFO  org.apache.camel.impl.engine.AbstractCamelContext - 
Apache Camel 3.13.0 (CamelJBang) shutdown in 11ms (uptime:2s978ms)
~/workspace/deleteme/yellow ❯

> jbang does not use correct camel version
> 
>
> Key: CAMEL-18400
> URL: https://issues.apache.org/jira/browse/CAMEL-18400
> Project: Camel
>  Issue Type: Bug
>  Components: camel-jbang
>Affects Versions: 3.18.1
>Reporter: Marat Gubaidullin
>Assignee: Claus Ibsen
>Priority: Major
> Fix For: 3.18.2, 3.19.0
>
>
> jbang does not use correct camel version. ex.
> 1. Execute command with camel 3.18.0, ex:
> {code:java}
> jbang -Dcamel.jbang.version=3.18.0 camel@apache/camel export  
> --directory=export --fresh
> {code}
> 2. Then execute same command with camel 3.18.1
> {code:java}
> jbang -Dcamel.jbang.version=3.18.1 camel@apache/camel export  
> --directory=export --fresh
> {code}
> The generated result will be with the old version 3.18.0 (ex. 
> application.properties generated with camelCase instead of kebab-case)



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Comment Edited] (CAMEL-18400) jbang does not use correct camel version

2022-08-24 Thread Claus Ibsen (Jira)


[ 
https://issues.apache.org/jira/browse/CAMEL-18400?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17584213#comment-17584213
 ] 

Claus Ibsen edited comment on CAMEL-18400 at 8/24/22 11:57 AM:
---

All the versions going back to 3.13.0 worked for me

~/workspace/deleteme/yellow ❯ jbang --fresh -Dcamel.jbang.version=3.13.0 
camel@apache/camel run *
   
[jbang] Resolving dependencies...
[jbang] Artifacts used for dependency management:
 org.apache.camel:camel-bom:pom:3.13.0
[jbang] org.apache.camel:camel-jbang-core:jar:3.13.0
 org.apache.camel.kamelets:camel-kamelets:jar:0.8.1
 org.apache.camel.kamelets:camel-kamelets-utils:jar:0.8.1
Done
[jbang] Dependencies resolved
[jbang] Building jar...
Starting Camel JBang!
A new lock file was created on 
/Users/davsclaus/workspace/deleteme/yellow/./.run14454802692800644920.camel.lock.
 Delete this file to stop running
13:57:15.735 [main] INFO  org.apache.camel.main.BaseMainSupport - 
Auto-configuration summary
13:57:15.737 [main] INFO  org.apache.camel.main.BaseMainSupport - 
camel.main.lightweight=true
13:57:15.737 [main] INFO  org.apache.camel.main.BaseMainSupport - 
camel.main.routesIncludePattern=file:bar.yaml
13:57:15.737 [main] INFO  org.apache.camel.main.BaseMainSupport - 
camel.main.name=CamelJBang
13:57:15.737 [main] INFO  org.apache.camel.main.BaseMainSupport - 
camel.component.kamelet.location=classpath:/kamelets,github:apache:camel-kamelets
13:57:16.314 [main] INFO  org.apache.camel.impl.engine.AbstractCamelContext - 
Routes startup summary (total:2 started:2)
13:57:16.314 [main] INFO  org.apache.camel.impl.engine.AbstractCamelContext -   
  Started route1 (file-watch://.)
13:57:16.314 [main] INFO  org.apache.camel.impl.engine.AbstractCamelContext -   
  Started route2 (timer://yaml2)
13:57:16.314 [main] INFO  org.apache.camel.impl.engine.AbstractCamelContext - 
Apache Camel 3.13.0 (CamelJBang) started in 558ms (build:18ms init:35ms 
start:505ms)
13:57:16.314 [main] INFO  org.apache.camel.impl.engine.AbstractCamelContext - 
Lightweight mode enabled. Performing optimizations and memory reduction.
13:57:17.328 [Camel (CamelJBang) thread #3 - timer://yaml2] INFO  route2 - 
Hello Camel from yaml
13:57:18.324 [Camel (CamelJBang) thread #3 - timer://yaml2] INFO  route2 - 
Hello Camel from yaml
^C13:57:18.776 [main] INFO  org.apache.camel.impl.engine.AbstractCamelContext - 
Apache Camel 3.13.0 (CamelJBang) shutting down (timeout:45s)
13:57:18.785 [main] INFO  org.apache.camel.impl.engine.AbstractCamelContext - 
Routes shutdown summary (total:2 stopped:2)
13:57:18.785 [main] INFO  org.apache.camel.impl.engine.AbstractCamelContext -   
  Stopped route2 (timer://yaml2)
13:57:18.786 [main] INFO  org.apache.camel.impl.engine.AbstractCamelContext -   
  Stopped route1 (file-watch://.)
13:57:18.787 [main] INFO  org.apache.camel.impl.engine.AbstractCamelContext - 
Apache Camel 3.13.0 (CamelJBang) shutdown in 11ms (uptime:2s978ms)
~/workspace/deleteme/yellow ❯


was (Author: davsclaus):
All the versions going back to 3.13.0 worked for me

~/workspace/deleteme/yellow ❯ jbang --fresh -Dcamel.jbang.version=3.13.0 
camel@apache/camel run *
   17s
[jbang] Resolving dependencies...
[jbang] Artifacts used for dependency management:
 org.apache.camel:camel-bom:pom:3.13.0
[jbang] org.apache.camel:camel-jbang-core:jar:3.13.0
 org.apache.camel.kamelets:camel-kamelets:jar:0.8.1
 org.apache.camel.kamelets:camel-kamelets-utils:jar:0.8.1
Done
[jbang] Dependencies resolved
[jbang] Building jar...
Starting Camel JBang!
A new lock file was created on 
/Users/davsclaus/workspace/deleteme/yellow/./.run14454802692800644920.camel.lock.
 Delete this file to stop running
13:57:15.735 [main] INFO  org.apache.camel.main.BaseMainSupport - 
Auto-configuration summary
13:57:15.737 [main] INFO  org.apache.camel.main.BaseMainSupport - 
camel.main.lightweight=true
13:57:15.737 [main] INFO  org.apache.camel.main.BaseMainSupport - 
camel.main.routesIncludePattern=file:bar.yaml
13:57:15.737 [main] INFO  org.apache.camel.main.BaseMainSupport - 
camel.main.name=CamelJBang
13:57:15.737 [main] INFO  org.apache.camel.main.BaseMainSupport - 
camel.component.kamelet.location=classpath:/kamelets,github:apache:camel-kamelets
13:57:16.314 [main] INFO  org.apache.camel.impl.engine.AbstractCamelContext - 
Routes startup summary (total:2 started:2)
13:57:16.314 [main] INFO  org.apache.camel.impl.engine.AbstractCamelContext -   
  Started route1 (file-watch://.)
13:57:16.314 [main] INFO  org.apache.camel.impl.engine.AbstractCamelContext -   
  Started route2 (timer://yaml2)
13:57:16.314 [main] INFO  org.apache.camel.impl.engine.AbstractCamelContext - 
Apache Camel 3.13.0 

[jira] [Commented] (CAMEL-18400) jbang does not use correct camel version

2022-08-24 Thread Claus Ibsen (Jira)


[ 
https://issues.apache.org/jira/browse/CAMEL-18400?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17584211#comment-17584211
 ] 

Claus Ibsen commented on CAMEL-18400:
-

I tried with --fresh too which worked

jbang --fresh -Dcamel.jbang.version=3.19.0-SNAPSHOT camel@apache/camel run *
jbang --fresh -Dcamel.jbang.version=3.18.1-SNAPSHOT camel@apache/camel run *

> jbang does not use correct camel version
> 
>
> Key: CAMEL-18400
> URL: https://issues.apache.org/jira/browse/CAMEL-18400
> Project: Camel
>  Issue Type: Bug
>  Components: camel-jbang
>Affects Versions: 3.18.1
>Reporter: Marat Gubaidullin
>Assignee: Claus Ibsen
>Priority: Major
> Fix For: 3.18.2, 3.19.0
>
>
> jbang does not use correct camel version. ex.
> 1. Execute command with camel 3.18.0, ex:
> {code:java}
> jbang -Dcamel.jbang.version=3.18.0 camel@apache/camel export  
> --directory=export --fresh
> {code}
> 2. Then execute same command with camel 3.18.1
> {code:java}
> jbang -Dcamel.jbang.version=3.18.1 camel@apache/camel export  
> --directory=export --fresh
> {code}
> The generated result will be with the old version 3.18.0 (ex. 
> application.properties generated with camelCase instead of kebab-case)



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Commented] (CAMEL-18400) jbang does not use correct camel version

2022-08-24 Thread Claus Ibsen (Jira)


[ 
https://issues.apache.org/jira/browse/CAMEL-18400?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17584178#comment-17584178
 ] 

Claus Ibsen commented on CAMEL-18400:
-

I cannot reproduce (I also removed jbang / m2)

{code}
~/workspace/deleteme ❯ jbang -Dcamel.jbang.version=3.19.0-SNAPSHOT 
camel@apache/camel run foo.yaml 
✘ INT 9s
[jbang] 
https://github.com/apache/camel/blob/HEAD/dsl/camel-jbang/camel-jbang-main/dist/CamelJBang.java
 is not from a trusted source thus not running it automatically.

If you trust the url to be safe to run you can do one of the following

(1) Trust once: Add no trust, just download this time (can be run multiple 
times while cached)
(2) Trust limited url in future: https://github.com/apache/camel/
(3) Trust organization url in future: https://github.com/apache/
(0) Cancel

[jbang] Type in your choice and hit enter. Will automatically select option (0) 
after 30 seconds.
3
[jbang] Adding [https://github.com/apache/] to 
/Users/davsclaus/.jbang/trusted-sources.json
[jbang] Resolving dependencies...
[jbang] Artifacts used for dependency management:
 org.apache.camel:camel-bom:pom:3.19.0-SNAPSHOT
[jbang] org.apache.camel:camel-jbang-core:jar:3.19.0-SNAPSHOT
 org.apache.camel.kamelets:camel-kamelets:jar:0.8.1
 org.apache.camel.kamelets:camel-kamelets-utils:jar:0.8.1
Done
[jbang] Dependencies resolved
[jbang] Building jar...
2022-08-24 12:57:01.992  INFO 22684 --- [   main] 
org.apache.camel.main.MainSupport: Apache Camel (JBang) 3.19.0-SNAPSHOT 
is starting
2022-08-24 12:57:02.031  INFO 22684 --- [   main] 
org.apache.camel.main.MainSupport: Using Java 11.0.13 with PID 22684. 
Started by davsclaus in /Users/davsclaus/workspace/deleteme
2022-08-24 12:57:04.674  INFO 22684 --- [   main] 
.main.download.MavenDependencyDownloader : Downloaded:  
org.apache.camel:camel-rest:3.19.0-SNAPSHOT (took: 2s463ms)
2022-08-24 12:57:04.793  INFO 22684 --- [   main] 
e.camel.impl.engine.AbstractCamelContext : Apache Camel 3.19.0-SNAPSHOT 
(CamelJBang) is starting
2022-08-24 12:57:04.872  INFO 22684 --- [   main] 
org.apache.camel.main.BaseMainSupport: Property-placeholders summary
2022-08-24 12:57:04.872  INFO 22684 --- [   main] 
org.apache.camel.main.BaseMainSupport: [application.properties]   
myName=Donald Duck
2022-08-24 12:57:04.873  INFO 22684 --- [   main] 
e.camel.impl.engine.AbstractCamelContext : Routes startup (started:1)
2022-08-24 12:57:04.873  INFO 22684 --- [   main] 
e.camel.impl.engine.AbstractCamelContext : Started route1 (timer://yaml)
2022-08-24 12:57:04.873  INFO 22684 --- [   main] 
e.camel.impl.engine.AbstractCamelContext : Apache Camel 3.19.0-SNAPSHOT 
(CamelJBang) started in 227ms (build:68ms init:79ms start:80ms JVM-uptime:3s)
2022-08-24 12:57:05.894  INFO 22684 --- [ - timer://yaml] foo.yaml:9
   : Hi Donald Duck from yaml3
2022-08-24 12:57:07.884  INFO 22684 --- [ - timer://yaml] foo.yaml:9
   : Hi Donald Duck from yaml3
2022-08-24 12:57:09.888  INFO 22684 --- [ - timer://yaml] foo.yaml:9
   : Hi Donald Duck from yaml3
^C2022-08-24 12:57:10.379  INFO 22684 --- [   main] 
e.camel.impl.engine.AbstractCamelContext : Apache Camel 3.19.0-SNAPSHOT 
(CamelJBang) is shutting down (timeout:45s)
2022-08-24 12:57:10.390  INFO 22684 --- [   main] 
e.camel.impl.engine.AbstractCamelContext : Routes stopped (stopped:1)
2022-08-24 12:57:10.390  INFO 22684 --- [   main] 
e.camel.impl.engine.AbstractCamelContext : Stopped route1 (timer://yaml)
2022-08-24 12:57:10.395  INFO 22684 --- [   main] 
e.camel.impl.engine.AbstractCamelContext : Apache Camel 3.19.0-SNAPSHOT 
(CamelJBang) shutdown in 16ms (uptime:5s JVM-uptime:9s)
2022-08-24 12:57:10.395  INFO 22684 --- [   main] 
org.apache.camel.main.MainSupport: Apache Camel (JBang) 3.19.0-SNAPSHOT 
shutdown
~/workspace/deleteme ❯ jbang -Dcamel.jbang.version=3.18.1 camel@apache/camel 
run foo.yaml
 ✘ INT 48s
[jbang] Resolving dependencies...
[jbang] Artifacts used for dependency management:
 org.apache.camel:camel-bom:pom:3.18.1
[jbang] org.apache.camel:camel-jbang-core:jar:3.18.1
 org.apache.camel.kamelets:camel-kamelets:jar:0.8.1
 org.apache.camel.kamelets:camel-kamelets-utils:jar:0.8.1
Done
[jbang] Dependencies resolved
2022-08-24 12:57:32.454  INFO 22702 --- [   main] 
org.apache.camel.main.MainSupport: Apache Camel (JBang) 3.18.1 is 
starting
2022-08-24 12:57:32.489  INFO 22702 --- [   main] 
org.apache.camel.main.MainSupport: Using Java 11.0.13 with PID 22702. 
Started by 

[jira] [Resolved] (CAMEL-18426) camel-jbang - Export - Add support for local-kamelets-dir

2022-08-24 Thread Claus Ibsen (Jira)


 [ 
https://issues.apache.org/jira/browse/CAMEL-18426?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Claus Ibsen resolved CAMEL-18426.
-
Resolution: Fixed

> camel-jbang - Export - Add support for local-kamelets-dir
> -
>
> Key: CAMEL-18426
> URL: https://issues.apache.org/jira/browse/CAMEL-18426
> Project: Camel
>  Issue Type: New Feature
>  Components: camel-jbang
>Affects Versions: 3.18.1
>Reporter: Claus Ibsen
>Assignee: Claus Ibsen
>Priority: Major
> Fix For: 3.18.2, 3.19.0
>
>
> So we copy local kamelets when exporting.



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Updated] (CAMEL-18427) Camel Debezium with Postgres

2022-08-24 Thread michael elbaz (Jira)


 [ 
https://issues.apache.org/jira/browse/CAMEL-18427?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

michael elbaz updated CAMEL-18427:
--
Description: 
>From camel 3.13.0 Camel Debezium simply not working is work perfectly with 
>camel older than 3.13.0

here the code
{code:java}
@Override
public void configure() throws Exception {
String DATABASE_READER = "debezium-postgres:localhost?"
+ "databaseHostname=localhost"
+ "=5432"
+ "=postgres"
+ "=test"
+ "=test"
+ "=localhost"
+ "=public"
+ "=public.*"
+ "=/tmp/offset-file-1.dat"
+ "=1"
+ "=pgoutput";
from(DATABASE_READER)
.routeId("debeziumPGRoute")
.log("Response : ${body}");
}
{code}
!image-2022-08-24-12-12-27-542.png|width=949,height=240!

I check this [changelog|https://camel.apache.org/releases/release-3.13.0/]
!image-2022-08-24-12-19-55-853.png|width=803,height=402!

  was:
>From camel 3.13.0 Camel Debezium simply not working is work perfectly with 
>older than 3.13.0 nothing happen

here the code
{code:java}
@Override
public void configure() throws Exception {
String DATABASE_READER = "debezium-postgres:localhost?"
+ "databaseHostname=localhost"
+ "=5432"
+ "=postgres"
+ "=test"
+ "=test"
+ "=localhost"
+ "=public"
+ "=public.*"
+ "=/tmp/offset-file-1.dat"
+ "=1"
+ "=pgoutput";
from(DATABASE_READER)
.routeId("debeziumPGRoute")
.log("Response : ${body}");
}
{code}
!image-2022-08-24-12-12-27-542.png|width=949,height=240!

I check this [changelog|https://camel.apache.org/releases/release-3.13.0/]
!image-2022-08-24-12-19-55-853.png|width=803,height=402!


> Camel Debezium with Postgres
> 
>
> Key: CAMEL-18427
> URL: https://issues.apache.org/jira/browse/CAMEL-18427
> Project: Camel
>  Issue Type: Bug
>  Components: camel-debezium
>Affects Versions: 3.13.0
> Environment: Jdk 17
> Windows 10
>Reporter: michael elbaz
>Priority: Major
> Attachments: image-2022-08-24-12-12-27-542.png, 
> image-2022-08-24-12-19-55-853.png
>
>
> From camel 3.13.0 Camel Debezium simply not working is work perfectly with 
> camel older than 3.13.0
> here the code
> {code:java}
> @Override
> public void configure() throws Exception {
> String DATABASE_READER = "debezium-postgres:localhost?"
> + "databaseHostname=localhost"
> + "=5432"
> + "=postgres"
> + "=test"
> + "=test"
> + "=localhost"
> + "=public"
> + "=public.*"
> + "=/tmp/offset-file-1.dat"
> + "=1"
> + "=pgoutput";
> from(DATABASE_READER)
> .routeId("debeziumPGRoute")
> .log("Response : ${body}");
> }
> {code}
> !image-2022-08-24-12-12-27-542.png|width=949,height=240!
> I check this [changelog|https://camel.apache.org/releases/release-3.13.0/]
> !image-2022-08-24-12-19-55-853.png|width=803,height=402!



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Updated] (CAMEL-18427) Camel Debezium with Postgres

2022-08-24 Thread michael elbaz (Jira)


 [ 
https://issues.apache.org/jira/browse/CAMEL-18427?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

michael elbaz updated CAMEL-18427:
--
  Flags: Important
   Language: java
 Regression: Regression
Description: 
>From camel 3.13.0 Camel Debezium simply not working is work perfectly with 
>older than 3.13.0 nothing happen

here the code
{code:java}
@Override
public void configure() throws Exception {
String DATABASE_READER = "debezium-postgres:localhost?"
+ "databaseHostname=localhost"
+ "=5432"
+ "=postgres"
+ "=test"
+ "=test"
+ "=localhost"
+ "=public"
+ "=public.*"
+ "=/tmp/offset-file-1.dat"
+ "=1"
+ "=pgoutput";
from(DATABASE_READER)
.routeId("debeziumPGRoute")
.log("Response : ${body}");
}
{code}
!image-2022-08-24-12-12-27-542.png|width=949,height=240!

I check this [changelog|https://camel.apache.org/releases/release-3.13.0/]
!image-2022-08-24-12-19-55-853.png|width=803,height=402!

  was:
>From camel 3.13.0 Camel Debezium simply not working is work perfectly with 
>older than 3.13.0 nothing happen

here the code
{code:java}
@Override
public void configure() throws Exception {
super.configure();

String dataDir = 
"D:/missions/infogreffe/integ-apollon/_data/offset-file-1.dat";

String DATABASE_READER = "debezium-postgres:localhost?"
+ "databaseHostname=localhost"
+ "=5432"
+ "=postgres"
+ "=test"
+ "=test"
+ "=localhost"
+ "=public"
+ "=public.*"
+ "=/tmp/offset-file-1.dat"
+ "=1"
+ "=pgoutput";
from(DATABASE_READER)
.routeId("debeziumPGRoute")
.log("Response : ${body}");
}
{code}
!image-2022-08-24-12-12-27-542.png|width=949,height=240!

I check this [changelog|https://camel.apache.org/releases/release-3.13.0/]
!image-2022-08-24-12-19-55-853.png|width=803,height=402!

Environment: 
Jdk 17

Windows 10

> Camel Debezium with Postgres
> 
>
> Key: CAMEL-18427
> URL: https://issues.apache.org/jira/browse/CAMEL-18427
> Project: Camel
>  Issue Type: Bug
>  Components: camel-debezium
>Affects Versions: 3.13.0
> Environment: Jdk 17
> Windows 10
>Reporter: michael elbaz
>Priority: Major
> Attachments: image-2022-08-24-12-12-27-542.png, 
> image-2022-08-24-12-19-55-853.png
>
>
> From camel 3.13.0 Camel Debezium simply not working is work perfectly with 
> older than 3.13.0 nothing happen
> here the code
> {code:java}
> @Override
> public void configure() throws Exception {
> String DATABASE_READER = "debezium-postgres:localhost?"
> + "databaseHostname=localhost"
> + "=5432"
> + "=postgres"
> + "=test"
> + "=test"
> + "=localhost"
> + "=public"
> + "=public.*"
> + "=/tmp/offset-file-1.dat"
> + "=1"
> + "=pgoutput";
> from(DATABASE_READER)
> .routeId("debeziumPGRoute")
> .log("Response : ${body}");
> }
> {code}
> !image-2022-08-24-12-12-27-542.png|width=949,height=240!
> I check this [changelog|https://camel.apache.org/releases/release-3.13.0/]
> !image-2022-08-24-12-19-55-853.png|width=803,height=402!



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Updated] (CAMEL-18427) Camel Debezium with Postgres

2022-08-24 Thread michael elbaz (Jira)


 [ 
https://issues.apache.org/jira/browse/CAMEL-18427?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

michael elbaz updated CAMEL-18427:
--
Description: 
>From camel 3.13.0 Camel Debezium simply not working is work perfectly with 
>older than 3.13.0 nothing happen

here the code
{code:java}
@Override
public void configure() throws Exception {
super.configure();

String dataDir = 
"D:/missions/infogreffe/integ-apollon/_data/offset-file-1.dat";

String DATABASE_READER = "debezium-postgres:localhost?"
+ "databaseHostname=localhost"
+ "=5432"
+ "=postgres"
+ "=test"
+ "=test"
+ "=localhost"
+ "=public"
+ "=public.*"
+ "=/tmp/offset-file-1.dat"
+ "=1"
+ "=pgoutput";
from(DATABASE_READER)
.routeId("debeziumPGRoute")
.log("Response : ${body}");
}
{code}
!image-2022-08-24-12-12-27-542.png|width=949,height=240!

I check this [changelog|https://camel.apache.org/releases/release-3.13.0/]
!image-2022-08-24-12-19-55-853.png|width=803,height=402!

  was:
>From camel 3.13.0 Camel Debezium simply not working is work perfectly with 
>older than 3.13.0 nothing happen 

here the code 


{code:java}
@Override
public void configure() throws Exception {
super.configure();

String dataDir = 
"D:/missions/infogreffe/integ-apollon/_data/offset-file-1.dat";

String DATABASE_READER = "debezium-postgres:localhost?"
+ "databaseHostname=localhost"
+ "=5432"
+ "=postgres"
+ "=test"
+ "=test"
+ "=localhost"
+ "=public"
+ "=public.*"
+ "=/tmp/offset-file-1.dat"
+ "=1"
+ "=pgoutput";
from(DATABASE_READER)
.routeId("debeziumPGRoute")
.log("Response : ${body}");
}
{code}


 !image-2022-08-24-12-12-27-542.png! 

I check this [changelog|https://camel.apache.org/releases/release-3.13.0/]
 !image-2022-08-24-12-19-55-853.png! 



> Camel Debezium with Postgres
> 
>
> Key: CAMEL-18427
> URL: https://issues.apache.org/jira/browse/CAMEL-18427
> Project: Camel
>  Issue Type: Bug
>  Components: camel-debezium
>Affects Versions: 3.13.0
>Reporter: michael elbaz
>Priority: Major
> Attachments: image-2022-08-24-12-12-27-542.png, 
> image-2022-08-24-12-19-55-853.png
>
>
> From camel 3.13.0 Camel Debezium simply not working is work perfectly with 
> older than 3.13.0 nothing happen
> here the code
> {code:java}
> @Override
> public void configure() throws Exception {
> super.configure();
> String dataDir = 
> "D:/missions/infogreffe/integ-apollon/_data/offset-file-1.dat";
> String DATABASE_READER = "debezium-postgres:localhost?"
> + "databaseHostname=localhost"
> + "=5432"
> + "=postgres"
> + "=test"
> + "=test"
> + "=localhost"
> + "=public"
> + "=public.*"
> + "=/tmp/offset-file-1.dat"
> + "=1"
> + "=pgoutput";
> from(DATABASE_READER)
> .routeId("debeziumPGRoute")
> .log("Response : ${body}");
> }
> {code}
> !image-2022-08-24-12-12-27-542.png|width=949,height=240!
> I check this [changelog|https://camel.apache.org/releases/release-3.13.0/]
> !image-2022-08-24-12-19-55-853.png|width=803,height=402!



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Created] (CAMEL-18427) Camel Debezium with Postgres

2022-08-24 Thread michael elbaz (Jira)
michael elbaz created CAMEL-18427:
-

 Summary: Camel Debezium with Postgres
 Key: CAMEL-18427
 URL: https://issues.apache.org/jira/browse/CAMEL-18427
 Project: Camel
  Issue Type: Bug
  Components: camel-debezium
Affects Versions: 3.13.0
Reporter: michael elbaz
 Attachments: image-2022-08-24-12-12-27-542.png, 
image-2022-08-24-12-19-55-853.png

>From camel 3.13.0 Camel Debezium simply not working is work perfectly with 
>older than 3.13.0 nothing happen 

here the code 


{code:java}
@Override
public void configure() throws Exception {
super.configure();

String dataDir = 
"D:/missions/infogreffe/integ-apollon/_data/offset-file-1.dat";

String DATABASE_READER = "debezium-postgres:localhost?"
+ "databaseHostname=localhost"
+ "=5432"
+ "=postgres"
+ "=test"
+ "=test"
+ "=localhost"
+ "=public"
+ "=public.*"
+ "=/tmp/offset-file-1.dat"
+ "=1"
+ "=pgoutput";
from(DATABASE_READER)
.routeId("debeziumPGRoute")
.log("Response : ${body}");
}
{code}


 !image-2022-08-24-12-12-27-542.png! 

I check this [changelog|https://camel.apache.org/releases/release-3.13.0/]
 !image-2022-08-24-12-19-55-853.png! 




--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Commented] (CAMEL-18355) HTTP component overwrites basic authentication credentials with proxy authentication

2022-08-24 Thread Karen Lease (Jira)


[ 
https://issues.apache.org/jira/browse/CAMEL-18355?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17584161#comment-17584161
 ] 

Karen Lease commented on CAMEL-18355:
-

I have submitted the PR if you want to try it out. I added a unit test which 
reproduced the issue and which works after the change.

> HTTP component overwrites basic authentication credentials with proxy 
> authentication 
> -
>
> Key: CAMEL-18355
> URL: https://issues.apache.org/jira/browse/CAMEL-18355
> Project: Camel
>  Issue Type: Bug
>  Components: camel-http
>Affects Versions: 3.18.0
>Reporter: Oliver Holzmann
>Assignee: Karen Lease
>Priority: Major
> Fix For: 3.18.2, 3.19.0
>
>
> We use HTTP endpoints with basic authentication (params {{authUsername}}, 
> {{authPassword}}) via a proxy that requires proxy authentication (params 
> {{proxyAuthUsername}}, {{proxyAuthPassword}}). 
> But basic authentication fails. In debug logs we see that basic 
> authentication header is using proxy credentials. 



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Assigned] (CAMEL-18355) HTTP component overwrites basic authentication credentials with proxy authentication

2022-08-24 Thread Karen Lease (Jira)


 [ 
https://issues.apache.org/jira/browse/CAMEL-18355?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Karen Lease reassigned CAMEL-18355:
---

Assignee: Karen Lease

> HTTP component overwrites basic authentication credentials with proxy 
> authentication 
> -
>
> Key: CAMEL-18355
> URL: https://issues.apache.org/jira/browse/CAMEL-18355
> Project: Camel
>  Issue Type: Bug
>  Components: camel-http
>Affects Versions: 3.18.0
>Reporter: Oliver Holzmann
>Assignee: Karen Lease
>Priority: Major
> Fix For: 3.18.2, 3.19.0
>
>
> We use HTTP endpoints with basic authentication (params {{authUsername}}, 
> {{authPassword}}) via a proxy that requires proxy authentication (params 
> {{proxyAuthUsername}}, {{proxyAuthPassword}}). 
> But basic authentication fails. In debug logs we see that basic 
> authentication header is using proxy credentials. 



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Created] (CAMEL-18426) camel-jbang - Export - Add support for local-kamelets-dir

2022-08-24 Thread Claus Ibsen (Jira)
Claus Ibsen created CAMEL-18426:
---

 Summary: camel-jbang - Export - Add support for local-kamelets-dir
 Key: CAMEL-18426
 URL: https://issues.apache.org/jira/browse/CAMEL-18426
 Project: Camel
  Issue Type: New Feature
  Components: camel-jbang
Affects Versions: 3.18.1
Reporter: Claus Ibsen
Assignee: Claus Ibsen
 Fix For: 3.18.2, 3.19.0


So we copy local kamelets when exporting.



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Created] (CAMEL-18425) camel-cli - Make regular Camel applications work with Camel CLI

2022-08-24 Thread Claus Ibsen (Jira)
Claus Ibsen created CAMEL-18425:
---

 Summary: camel-cli - Make regular Camel applications work with 
Camel CLI
 Key: CAMEL-18425
 URL: https://issues.apache.org/jira/browse/CAMEL-18425
 Project: Camel
  Issue Type: New Feature
  Components: camel-jbang
Reporter: Claus Ibsen
Assignee: Claus Ibsen
 Fix For: 3.19.0


The Camel CLI has commands to get status and start/stop camel applications, but 
its limited to camel-jbang based integrations.

We can look at having a camel-cli dependency that you can add to 
camel-spring-boot or camel-main etc when you want your app to be able to work 
with the Camel CLI.

This dependency should only be used for development purposes.

You could then have a mvn spring-boot:run app and then also a camel-jbang app 
that work together and you need to control them via the camel cli, to have a 
better UX.



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Resolved] (CAMEL-18424) camel-jbang - Dependency downloaded issue with camel-aws-s3

2022-08-24 Thread Claus Ibsen (Jira)


 [ 
https://issues.apache.org/jira/browse/CAMEL-18424?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Claus Ibsen resolved CAMEL-18424.
-
Resolution: Fixed

> camel-jbang - Dependency downloaded issue with camel-aws-s3
> ---
>
> Key: CAMEL-18424
> URL: https://issues.apache.org/jira/browse/CAMEL-18424
> Project: Camel
>  Issue Type: Bug
>  Components: camel-jbang
>Affects Versions: 3.18.1
>Reporter: Claus Ibsen
>Assignee: Claus Ibsen
>Priority: Major
> Fix For: 3.18.2, 3.19.0
>
>
> This needed dependency is not added to the classpath
> mvn:software.amazon.awssdk:utils:2.17.258
> The issue is that jbang mistakenly see it as already on classpath



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Created] (CAMEL-18424) camel-jbang - Dependency downloaded issue with camel-aws-s3

2022-08-24 Thread Claus Ibsen (Jira)
Claus Ibsen created CAMEL-18424:
---

 Summary: camel-jbang - Dependency downloaded issue with 
camel-aws-s3
 Key: CAMEL-18424
 URL: https://issues.apache.org/jira/browse/CAMEL-18424
 Project: Camel
  Issue Type: Bug
  Components: camel-jbang
Affects Versions: 3.18.1
Reporter: Claus Ibsen
Assignee: Claus Ibsen
 Fix For: 3.18.2, 3.19.0


This needed dependency is not added to the classpath
mvn:software.amazon.awssdk:utils:2.17.258

The issue is that jbang mistakenly see it as already on classpath



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Created] (CAMEL-18423) camel-microprofile-config: Handle NoSuchElementException in CamelMicroProfilePropertiesSource. loadProperties(Predicate filter)

2022-08-24 Thread James Netherton (Jira)
James Netherton created CAMEL-18423:
---

 Summary: camel-microprofile-config: Handle NoSuchElementException 
in CamelMicroProfilePropertiesSource. loadProperties(Predicate filter)
 Key: CAMEL-18423
 URL: https://issues.apache.org/jira/browse/CAMEL-18423
 Project: Camel
  Issue Type: Improvement
  Components: camel-microprofile-config
Affects Versions: 3.18.1, 3.18.0
Reporter: James Netherton
Assignee: James Netherton
 Fix For: 3.18.2, 3.19.0


Extension of https://issues.apache.org/jira/browse/CAMEL-18233.

We need to handle NoSuchElementException in the 
loadProperties(Predicate filter) variant of loadProperties in 
CamelMicroProfilePropertiesSource. I thought it was not required because the 
config does an optional lookup, but it seems even that can fail if config 
values are not resolvable.



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Updated] (CAMEL-18422) Camel-AWS Component: Explicitly add AWS SDK Utils dependency

2022-08-24 Thread Andrea Cosentino (Jira)


 [ 
https://issues.apache.org/jira/browse/CAMEL-18422?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Andrea Cosentino updated CAMEL-18422:
-
Fix Version/s: 3.18.2

> Camel-AWS Component: Explicitly add AWS SDK Utils dependency 
> -
>
> Key: CAMEL-18422
> URL: https://issues.apache.org/jira/browse/CAMEL-18422
> Project: Camel
>  Issue Type: Task
>Reporter: Andrea Cosentino
>Assignee: Andrea Cosentino
>Priority: Major
> Fix For: 3.18.2, 3.19.0
>
>




--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Resolved] (CAMEL-18422) Camel-AWS Component: Explicitly add AWS SDK Utils dependency

2022-08-24 Thread Andrea Cosentino (Jira)


 [ 
https://issues.apache.org/jira/browse/CAMEL-18422?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Andrea Cosentino resolved CAMEL-18422.
--
Resolution: Fixed

> Camel-AWS Component: Explicitly add AWS SDK Utils dependency 
> -
>
> Key: CAMEL-18422
> URL: https://issues.apache.org/jira/browse/CAMEL-18422
> Project: Camel
>  Issue Type: Task
>Reporter: Andrea Cosentino
>Assignee: Andrea Cosentino
>Priority: Major
> Fix For: 3.19.0
>
>




--
This message was sent by Atlassian Jira
(v8.20.10#820010)