[GitHub] [camel-spring-boot] davsclaus commented on pull request #407: Camel spring boot 3.12.x collect

2021-11-10 Thread GitBox


davsclaus commented on pull request #407:
URL: https://github.com/apache/camel-spring-boot/pull/407#issuecomment-966067506


   3.12.x will be removed when we release 3.13.x


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org




[GitHub] [camel] oscerd closed pull request #6423: Generated sources regen

2021-11-10 Thread GitBox


oscerd closed pull request #6423:
URL: https://github.com/apache/camel/pull/6423


   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org




[camel] branch regen_bot updated (e88b1dc -> 3c3a995)

2021-11-10 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch regen_bot
in repository https://gitbox.apache.org/repos/asf/camel.git.


omit e88b1dc  Regen for commit 7a52fb094a0d307a65ff29104d1ad21f143ffc74
 add 2318061  CAMEL-17121: present the awaitConsumer from blocking 
indefinitely (#6421)
 add 3c3a995  Regen for commit 2318061993f4df665d4da2f95f6f3ca594edac9b

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (e88b1dc)
\
 N -- N -- N   refs/heads/regen_bot (3c3a995)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

No new revisions were added by this update.

Summary of changes:
 .../org/apache/camel/component/directvm/DirectVmBlockingProducer.java  | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)


[GitHub] [camel] github-actions[bot] opened a new pull request #6423: Generated sources regen

2021-11-10 Thread GitBox


github-actions[bot] opened a new pull request #6423:
URL: https://github.com/apache/camel/pull/6423


   Regen bot :robot: found some uncommited changes after running build on 
:camel: main.
   Please do not delete `regen_bot` branch after merge/rebase.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org




[camel] branch main updated: Polished

2021-11-10 Thread davsclaus
This is an automated email from the ASF dual-hosted git repository.

davsclaus pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel.git


The following commit(s) were added to refs/heads/main by this push:
 new daf613d  Polished
daf613d is described below

commit daf613d068a8fbe5ce93064e7b0ab573d9c328bc
Author: Claus Ibsen 
AuthorDate: Wed Nov 10 16:40:18 2021 +0100

Polished
---
 .../org/apache/camel/support/cache/DefaultProducerCache.java   | 10 ++
 1 file changed, 6 insertions(+), 4 deletions(-)

diff --git 
a/core/camel-support/src/main/java/org/apache/camel/support/cache/DefaultProducerCache.java
 
b/core/camel-support/src/main/java/org/apache/camel/support/cache/DefaultProducerCache.java
index a5b0509..97152e4 100644
--- 
a/core/camel-support/src/main/java/org/apache/camel/support/cache/DefaultProducerCache.java
+++ 
b/core/camel-support/src/main/java/org/apache/camel/support/cache/DefaultProducerCache.java
@@ -133,13 +133,15 @@ public class DefaultProducerCache extends ServiceSupport 
implements ProducerCach
 .build())
 .build();
 
-StopWatch watch = new StopWatch();
+StopWatch watch = LOG.isDebugEnabled() ? new StopWatch() : null;
 if (!task.run(service::isStarting)) {
-LOG.warn("The producer did not finish starting");
+LOG.warn("The producer: {} did not finish starting in {} ms", 
service, ACQUIRE_WAIT_TIME);
 }
 
-LOG.debug("Waited {} ms for producer to finish starting: {} state: 
{}", watch.taken(), service,
-service.getStatus());
+if (LOG.isDebugEnabled()) {
+LOG.debug("Waited {} ms for producer to finish starting: {} state: 
{}", watch.taken(), service,
+service.getStatus());
+}
 }
 
 @Override


[camel] branch main updated: CAMEL-17121: final cleanups

2021-11-10 Thread orpiske
This is an automated email from the ASF dual-hosted git repository.

orpiske pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel.git


The following commit(s) were added to refs/heads/main by this push:
 new b281d36  CAMEL-17121: final cleanups
b281d36 is described below

commit b281d36ec4ed98f7d1ea475a4a556cef5e8ca470
Author: Otavio Rodolfo Piske 
AuthorDate: Wed Nov 10 18:54:13 2021 +0100

CAMEL-17121: final cleanups

- Added documentation details
- Fixed typos
- Fixed/improved log messages
- Used final for a few variables
---
 .../java/org/apache/camel/support/task/BackgroundTask.java   |  4 ++--
 .../org/apache/camel/support/task/budget/BudgetBuilder.java  |  2 +-
 .../java/org/apache/camel/support/task/budget/Budgets.java   |  2 +-
 .../camel/support/task/budget/IterationBoundedBudget.java|  6 ++
 .../apache/camel/support/task/budget/IterationBudget.java|  2 +-
 .../support/task/budget/IterationTimeBoundedBudget.java  | 12 ++--
 .../apache/camel/support/task/budget/TimeBoundedBudget.java  |  5 -
 .../org/apache/camel/support/task/budget/TimeBudget.java |  2 +-
 8 files changed, 26 insertions(+), 9 deletions(-)

diff --git 
a/core/camel-support/src/main/java/org/apache/camel/support/task/BackgroundTask.java
 
b/core/camel-support/src/main/java/org/apache/camel/support/task/BackgroundTask.java
index 1cf0738..48567b1 100644
--- 
a/core/camel-support/src/main/java/org/apache/camel/support/task/BackgroundTask.java
+++ 
b/core/camel-support/src/main/java/org/apache/camel/support/task/BackgroundTask.java
@@ -55,7 +55,7 @@ public class BackgroundTask implements BlockingTask {
 }
 
 /**
- * Sets a executor service manager for managing the threads
+ * Sets an executor service manager for managing the threads
  *
  * @param  service an instance of an executor service to use
  * @return
@@ -155,7 +155,7 @@ public class BackgroundTask implements BlockingTask {
 if (!latch.await(budget.maxDuration(), TimeUnit.MILLISECONDS)) 
{
 LOG.debug("Timeout out waiting for the completion of the 
task");
 } else {
-LOG.info("The task is complete after iterations and the 
code is ready to continue");
+LOG.debug("The task has finished the execution and it is 
ready to continue");
 
 completed = true;
 }
diff --git 
a/core/camel-support/src/main/java/org/apache/camel/support/task/budget/BudgetBuilder.java
 
b/core/camel-support/src/main/java/org/apache/camel/support/task/budget/BudgetBuilder.java
index bf77d0b..d24b2ae 100644
--- 
a/core/camel-support/src/main/java/org/apache/camel/support/task/budget/BudgetBuilder.java
+++ 
b/core/camel-support/src/main/java/org/apache/camel/support/task/budget/BudgetBuilder.java
@@ -26,7 +26,7 @@ public interface BudgetBuilder {
 /**
  * Build the budget
  * 
- * @return
+ * @return the budget that was built
  */
 T build();
 }
diff --git 
a/core/camel-support/src/main/java/org/apache/camel/support/task/budget/Budgets.java
 
b/core/camel-support/src/main/java/org/apache/camel/support/task/budget/Budgets.java
index 8d02a90..e21ba68 100644
--- 
a/core/camel-support/src/main/java/org/apache/camel/support/task/budget/Budgets.java
+++ 
b/core/camel-support/src/main/java/org/apache/camel/support/task/budget/Budgets.java
@@ -82,7 +82,7 @@ public final class Budgets {
 }
 
 /**
- * Some components use 0 to disable retring the task. This sanitizes it to 
run at least once
+ * Some components use 0 to disable retrying the task. This sanitizes it 
to run at least once
  * 
  * @param  iterations the number of iterations
  * @returnan integer greater than or equal to 1 equivalent to 
the maximum number of iterations allowed
diff --git 
a/core/camel-support/src/main/java/org/apache/camel/support/task/budget/IterationBoundedBudget.java
 
b/core/camel-support/src/main/java/org/apache/camel/support/task/budget/IterationBoundedBudget.java
index 6cf3574..4ee42db 100644
--- 
a/core/camel-support/src/main/java/org/apache/camel/support/task/budget/IterationBoundedBudget.java
+++ 
b/core/camel-support/src/main/java/org/apache/camel/support/task/budget/IterationBoundedBudget.java
@@ -20,7 +20,13 @@ package org.apache.camel.support.task.budget;
 import org.apache.camel.support.task.budget.backoff.BackOffStrategy;
 import org.apache.camel.support.task.budget.backoff.FixedBackOffStrategy;
 
+/**
+ * This task budget limits the execution by a given number of iterations or an 
unlimited number if configured to do so.
+ */
 public class IterationBoundedBudget implements IterationBudget {
+/**
+ * Defines an "unlimited" number of iterations
+ */
 public static final int UNLIMITED_ITERATIONS = -1;
 
 private final long initialDelay;
diff --git 

[GitHub] [camel] orpiske merged pull request #6419: CAMEL-17121: final cleanups

2021-11-10 Thread GitBox


orpiske merged pull request #6419:
URL: https://github.com/apache/camel/pull/6419


   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org




[GitHub] [camel-quarkus] jamesnetherton opened a new pull request #3288: Upgrade Quarkus to 2.5.0.CR1

2021-11-10 Thread GitBox


jamesnetherton opened a new pull request #3288:
URL: https://github.com/apache/camel-quarkus/pull/3288


   @zhfeng I dropped the two commits you mentioned in #3284.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org




[camel-quarkus] branch quarkus-2.5.0.CR1 created (now 386f211)

2021-11-10 Thread jamesnetherton
This is an automated email from the ASF dual-hosted git repository.

jamesnetherton pushed a change to branch quarkus-2.5.0.CR1
in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git.


  at 386f211  Re-enable Kafka ssl sasl tests (#3252)

This branch includes the following new commits:

 new 8916f47  Upgrade Quarkus to 2.5.0.CR1
 new c848569  Temporarily disable kafka-sasl & kafka-ssl tests due to #3239
 new 386f211  Re-enable Kafka ssl sasl tests (#3252)

The 3 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[camel-quarkus] 03/03: Re-enable Kafka ssl sasl tests (#3252)

2021-11-10 Thread jamesnetherton
This is an automated email from the ASF dual-hosted git repository.

jamesnetherton pushed a commit to branch quarkus-2.5.0.CR1
in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git

commit 386f21163a8cd55f73cf6194db55465c2f734846
Author: Amos Feng 
AuthorDate: Tue Nov 2 17:30:33 2021 +0800

Re-enable Kafka ssl sasl tests (#3252)

* Revert "Temporarily disable kafka-sasl & kafka-ssl tests due to #3239"

This reverts commit 25a3d41b578c610224a0126f52e2176fd05fdf53.

* Fix #3239 to override KAFKA_ADVERTISED_LISTENERS env

* sync avro.version
---
 .../org/apache/camel/quarkus/kafka/sasl/KafkaSaslSslTest.java |  2 --
 .../camel/quarkus/kafka/sasl/KafkaSaslSslTestResource.java|  9 +
 .../apache/camel/quarkus/kafka/sasl/KafkaSaslBindingTest.java |  2 --
 .../java/org/apache/camel/quarkus/kafka/sasl/KafkaSaslIT.java |  2 --
 .../camel/quarkus/kafka/sasl/KafkaSaslTestResource.java   | 11 ++-
 .../java/org/apache/camel/quarkus/kafka/ssl/KafkaSslTest.java |  2 --
 .../apache/camel/quarkus/kafka/ssl/KafkaSslTestResource.java  |  9 +
 pom.xml   |  2 +-
 8 files changed, 29 insertions(+), 10 deletions(-)

diff --git 
a/integration-tests/kafka-sasl-ssl/src/test/java/org/apache/camel/quarkus/kafka/sasl/KafkaSaslSslTest.java
 
b/integration-tests/kafka-sasl-ssl/src/test/java/org/apache/camel/quarkus/kafka/sasl/KafkaSaslSslTest.java
index 71d482b..947a7ee 100644
--- 
a/integration-tests/kafka-sasl-ssl/src/test/java/org/apache/camel/quarkus/kafka/sasl/KafkaSaslSslTest.java
+++ 
b/integration-tests/kafka-sasl-ssl/src/test/java/org/apache/camel/quarkus/kafka/sasl/KafkaSaslSslTest.java
@@ -22,12 +22,10 @@ import io.quarkus.test.common.QuarkusTestResource;
 import io.quarkus.test.junit.QuarkusTest;
 import io.restassured.RestAssured;
 import io.restassured.path.json.JsonPath;
-import org.junit.jupiter.api.Disabled;
 import org.junit.jupiter.api.Test;
 
 import static org.assertj.core.api.Assertions.assertThat;
 
-@Disabled("https://github.com/apache/camel-quarkus/issues/3239;)
 @QuarkusTest
 @QuarkusTestResource(KafkaSaslSslTestResource.class)
 public class KafkaSaslSslTest {
diff --git 
a/integration-tests/kafka-sasl-ssl/src/test/java/org/apache/camel/quarkus/kafka/sasl/KafkaSaslSslTestResource.java
 
b/integration-tests/kafka-sasl-ssl/src/test/java/org/apache/camel/quarkus/kafka/sasl/KafkaSaslSslTestResource.java
index a6f55b9..ac807d3 100644
--- 
a/integration-tests/kafka-sasl-ssl/src/test/java/org/apache/camel/quarkus/kafka/sasl/KafkaSaslSslTestResource.java
+++ 
b/integration-tests/kafka-sasl-ssl/src/test/java/org/apache/camel/quarkus/kafka/sasl/KafkaSaslSslTestResource.java
@@ -129,6 +129,15 @@ public class KafkaSaslSslTestResource extends 
KafkaTestResource {
 }
 
 @Override
+protected void configure() {
+super.configure();
+
+String host = getNetwork() != null ? getNetworkAliases().get(0) : 
"localhost";
+withEnv("KAFKA_ADVERTISED_LISTENERS",
+String.format("SASL_SSL://%s:9093,BROKER://%s:9092", host, 
host));
+}
+
+@Override
 protected void containerIsStarting(InspectContainerResponse 
containerInfo, boolean reused) {
 super.containerIsStarting(containerInfo, reused);
 copyFileToContainer(
diff --git 
a/integration-tests/kafka-sasl/src/test/java/org/apache/camel/quarkus/kafka/sasl/KafkaSaslBindingTest.java
 
b/integration-tests/kafka-sasl/src/test/java/org/apache/camel/quarkus/kafka/sasl/KafkaSaslBindingTest.java
index 968749a..c4a246b 100644
--- 
a/integration-tests/kafka-sasl/src/test/java/org/apache/camel/quarkus/kafka/sasl/KafkaSaslBindingTest.java
+++ 
b/integration-tests/kafka-sasl/src/test/java/org/apache/camel/quarkus/kafka/sasl/KafkaSaslBindingTest.java
@@ -22,12 +22,10 @@ import io.quarkus.test.common.QuarkusTestResource;
 import io.quarkus.test.junit.QuarkusTest;
 import io.restassured.RestAssured;
 import io.restassured.path.json.JsonPath;
-import org.junit.jupiter.api.Disabled;
 import org.junit.jupiter.api.Test;
 
 import static org.assertj.core.api.AssertionsForClassTypes.assertThat;
 
-@Disabled("https://github.com/apache/camel-quarkus/issues/3239;)
 @QuarkusTest
 @QuarkusTestResource(KafkaSaslTestResource.class)
 public class KafkaSaslBindingTest {
diff --git 
a/integration-tests/kafka-sasl/src/test/java/org/apache/camel/quarkus/kafka/sasl/KafkaSaslIT.java
 
b/integration-tests/kafka-sasl/src/test/java/org/apache/camel/quarkus/kafka/sasl/KafkaSaslIT.java
index 297a3f4..6b25cb4 100644
--- 
a/integration-tests/kafka-sasl/src/test/java/org/apache/camel/quarkus/kafka/sasl/KafkaSaslIT.java
+++ 
b/integration-tests/kafka-sasl/src/test/java/org/apache/camel/quarkus/kafka/sasl/KafkaSaslIT.java
@@ -16,10 +16,8 @@
  */
 package org.apache.camel.quarkus.kafka.sasl;
 
-import io.quarkus.test.junit.DisabledOnNativeImage;
 import 

[camel-quarkus] 01/03: Upgrade Quarkus to 2.5.0.CR1

2021-11-10 Thread jamesnetherton
This is an automated email from the ASF dual-hosted git repository.

jamesnetherton pushed a commit to branch quarkus-2.5.0.CR1
in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git

commit 8916f47d34cc5e199f8ca2de220b247feb270b43
Author: James Netherton 
AuthorDate: Thu Oct 14 07:49:19 2021 +0100

Upgrade Quarkus to 2.5.0.CR1
---
 docs/antora.yml  |  2 +-
 .../core/deployment/CamelContextCustomizerTest.java  |  2 +-
 .../optaplanner/deployment/OptaplannerProcessor.java |  1 +
 integration-tests-support/azure/pom.xml  |  6 ++
 .../camel/quarkus/component/fop/it/FopResource.java  | 16 ++--
 .../quarkus/component/salesforce/SalesforceResource.java |  4 ++--
 pom.xml  |  8 
 poms/bom/pom.xml |  2 +-
 8 files changed, 22 insertions(+), 19 deletions(-)

diff --git a/docs/antora.yml b/docs/antora.yml
index 30b5114..ddc7f67 100644
--- a/docs/antora.yml
+++ b/docs/antora.yml
@@ -27,7 +27,7 @@ asciidoc:
 min-maven-version: 3.6.2 # replace ${min-maven-version}
 target-maven-version: 3.8.1 # replace ${target-maven-version}
 camel-version: 3.12.0 # replace ${camel.version}
-quarkus-version: 2.4.0.Final # replace ${quarkus.version}
+quarkus-version: 2.5.0.CR1 # replace ${quarkus.version}
 # attributes used in xrefs to other Antora components
 cq-camel-components: 3.12.x@components # replace 
${camel.docs.components.xref}
 quarkus-examples-version: latest
diff --git 
a/extensions-core/core/deployment/src/test/java/org/apache/camel/quarkus/core/deployment/CamelContextCustomizerTest.java
 
b/extensions-core/core/deployment/src/test/java/org/apache/camel/quarkus/core/deployment/CamelContextCustomizerTest.java
index d059d74..69f04c3 100644
--- 
a/extensions-core/core/deployment/src/test/java/org/apache/camel/quarkus/core/deployment/CamelContextCustomizerTest.java
+++ 
b/extensions-core/core/deployment/src/test/java/org/apache/camel/quarkus/core/deployment/CamelContextCustomizerTest.java
@@ -53,7 +53,7 @@ public class CamelContextCustomizerTest {
 public void execute(BuildContext context) {
 String methodName = "execute";
 BytecodeRecorderImpl bri = new 
BytecodeRecorderImpl(true, getClass().getSimpleName(), methodName,
-Integer.toString(methodName.hashCode()), true);
+Integer.toString(methodName.hashCode()), true, 
s -> null);
 RuntimeValue value = bri
 
.newInstance(RestConfigurationCustomizer.class.getName());
 context.produce(new 
CamelContextCustomizerBuildItem(value));
diff --git 
a/extensions/optaplanner/deployment/src/main/java/org/apache/camel/quarkus/component/optaplanner/deployment/OptaplannerProcessor.java
 
b/extensions/optaplanner/deployment/src/main/java/org/apache/camel/quarkus/component/optaplanner/deployment/OptaplannerProcessor.java
index 497bfa3..488752b 100644
--- 
a/extensions/optaplanner/deployment/src/main/java/org/apache/camel/quarkus/component/optaplanner/deployment/OptaplannerProcessor.java
+++ 
b/extensions/optaplanner/deployment/src/main/java/org/apache/camel/quarkus/component/optaplanner/deployment/OptaplannerProcessor.java
@@ -35,5 +35,6 @@ class OptaplannerProcessor {
 runtimeInitializedClass.produce(new 
RuntimeInitializedClassBuildItem("org.drools.core.util.Drools$XSTreamChekcer"));
 runtimeInitializedClass
 .produce(new 
RuntimeInitializedClassBuildItem("org.drools.compiler.kproject.models.KieModuleMarshaller"));
+runtimeInitializedClass.produce(new 
RuntimeInitializedClassBuildItem("org.drools.core.rule.JavaDialectRuntimeData"));
 }
 }
diff --git a/integration-tests-support/azure/pom.xml 
b/integration-tests-support/azure/pom.xml
index 42ed843..bca5eff 100644
--- a/integration-tests-support/azure/pom.xml
+++ b/integration-tests-support/azure/pom.xml
@@ -41,6 +41,12 @@
 
 org.testcontainers
 testcontainers
+
+
+org.jetbrains
+annotations
+
+
 
 
 
diff --git 
a/integration-tests/fop/src/main/java/org/apache/camel/quarkus/component/fop/it/FopResource.java
 
b/integration-tests/fop/src/main/java/org/apache/camel/quarkus/component/fop/it/FopResource.java
index 54319ee..b04ba56 100644
--- 
a/integration-tests/fop/src/main/java/org/apache/camel/quarkus/component/fop/it/FopResource.java
+++ 
b/integration-tests/fop/src/main/java/org/apache/camel/quarkus/component/fop/it/FopResource.java
@@ -16,7 +16,6 @@
  */
 package org.apache.camel.quarkus.component.fop.it;
 
-import java.io.InputStream;
 import java.net.URI;
 
 import javax.enterprise.context.ApplicationScoped;
@@ -52,14 +51,11 

[camel-quarkus] 02/03: Temporarily disable kafka-sasl & kafka-ssl tests due to #3239

2021-11-10 Thread jamesnetherton
This is an automated email from the ASF dual-hosted git repository.

jamesnetherton pushed a commit to branch quarkus-2.5.0.CR1
in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git

commit c848569b5d3284545dbaf5eaa0c6aa2dcecc767e
Author: James Netherton 
AuthorDate: Wed Oct 27 10:35:20 2021 +0100

Temporarily disable kafka-sasl & kafka-ssl tests due to #3239
---
 .../test/java/org/apache/camel/quarkus/kafka/sasl/KafkaSaslSslTest.java | 2 ++
 .../java/org/apache/camel/quarkus/kafka/sasl/KafkaSaslBindingTest.java  | 2 ++
 .../src/test/java/org/apache/camel/quarkus/kafka/sasl/KafkaSaslIT.java  | 2 ++
 .../src/test/java/org/apache/camel/quarkus/kafka/ssl/KafkaSslTest.java  | 2 ++
 4 files changed, 8 insertions(+)

diff --git 
a/integration-tests/kafka-sasl-ssl/src/test/java/org/apache/camel/quarkus/kafka/sasl/KafkaSaslSslTest.java
 
b/integration-tests/kafka-sasl-ssl/src/test/java/org/apache/camel/quarkus/kafka/sasl/KafkaSaslSslTest.java
index 947a7ee..71d482b 100644
--- 
a/integration-tests/kafka-sasl-ssl/src/test/java/org/apache/camel/quarkus/kafka/sasl/KafkaSaslSslTest.java
+++ 
b/integration-tests/kafka-sasl-ssl/src/test/java/org/apache/camel/quarkus/kafka/sasl/KafkaSaslSslTest.java
@@ -22,10 +22,12 @@ import io.quarkus.test.common.QuarkusTestResource;
 import io.quarkus.test.junit.QuarkusTest;
 import io.restassured.RestAssured;
 import io.restassured.path.json.JsonPath;
+import org.junit.jupiter.api.Disabled;
 import org.junit.jupiter.api.Test;
 
 import static org.assertj.core.api.Assertions.assertThat;
 
+@Disabled("https://github.com/apache/camel-quarkus/issues/3239;)
 @QuarkusTest
 @QuarkusTestResource(KafkaSaslSslTestResource.class)
 public class KafkaSaslSslTest {
diff --git 
a/integration-tests/kafka-sasl/src/test/java/org/apache/camel/quarkus/kafka/sasl/KafkaSaslBindingTest.java
 
b/integration-tests/kafka-sasl/src/test/java/org/apache/camel/quarkus/kafka/sasl/KafkaSaslBindingTest.java
index c4a246b..968749a 100644
--- 
a/integration-tests/kafka-sasl/src/test/java/org/apache/camel/quarkus/kafka/sasl/KafkaSaslBindingTest.java
+++ 
b/integration-tests/kafka-sasl/src/test/java/org/apache/camel/quarkus/kafka/sasl/KafkaSaslBindingTest.java
@@ -22,10 +22,12 @@ import io.quarkus.test.common.QuarkusTestResource;
 import io.quarkus.test.junit.QuarkusTest;
 import io.restassured.RestAssured;
 import io.restassured.path.json.JsonPath;
+import org.junit.jupiter.api.Disabled;
 import org.junit.jupiter.api.Test;
 
 import static org.assertj.core.api.AssertionsForClassTypes.assertThat;
 
+@Disabled("https://github.com/apache/camel-quarkus/issues/3239;)
 @QuarkusTest
 @QuarkusTestResource(KafkaSaslTestResource.class)
 public class KafkaSaslBindingTest {
diff --git 
a/integration-tests/kafka-sasl/src/test/java/org/apache/camel/quarkus/kafka/sasl/KafkaSaslIT.java
 
b/integration-tests/kafka-sasl/src/test/java/org/apache/camel/quarkus/kafka/sasl/KafkaSaslIT.java
index 6b25cb4..297a3f4 100644
--- 
a/integration-tests/kafka-sasl/src/test/java/org/apache/camel/quarkus/kafka/sasl/KafkaSaslIT.java
+++ 
b/integration-tests/kafka-sasl/src/test/java/org/apache/camel/quarkus/kafka/sasl/KafkaSaslIT.java
@@ -16,8 +16,10 @@
  */
 package org.apache.camel.quarkus.kafka.sasl;
 
+import io.quarkus.test.junit.DisabledOnNativeImage;
 import io.quarkus.test.junit.NativeImageTest;
 
+@DisabledOnNativeImage("https://github.com/apache/camel-quarkus/issues/3239;)
 @NativeImageTest
 public class KafkaSaslIT extends KafkaSaslBindingTest {
 }
diff --git 
a/integration-tests/kafka-ssl/src/test/java/org/apache/camel/quarkus/kafka/ssl/KafkaSslTest.java
 
b/integration-tests/kafka-ssl/src/test/java/org/apache/camel/quarkus/kafka/ssl/KafkaSslTest.java
index 8cc3a89..f25e8c0 100644
--- 
a/integration-tests/kafka-ssl/src/test/java/org/apache/camel/quarkus/kafka/ssl/KafkaSslTest.java
+++ 
b/integration-tests/kafka-ssl/src/test/java/org/apache/camel/quarkus/kafka/ssl/KafkaSslTest.java
@@ -22,11 +22,13 @@ import io.quarkus.test.common.QuarkusTestResource;
 import io.quarkus.test.junit.QuarkusTest;
 import io.restassured.RestAssured;
 import io.restassured.path.json.JsonPath;
+import org.junit.jupiter.api.Disabled;
 import org.junit.jupiter.api.Test;
 
 import static org.assertj.core.api.Assertions.assertThat;
 import static org.hamcrest.Matchers.is;
 
+@Disabled("https://github.com/apache/camel-quarkus/issues/3239;)
 @QuarkusTest
 @QuarkusTestResource(KafkaSslTestResource.class)
 public class KafkaSslTest {


[GitHub] [camel] orpiske commented on a change in pull request #6419: CAMEL-17121: final cleanups

2021-11-10 Thread GitBox


orpiske commented on a change in pull request #6419:
URL: https://github.com/apache/camel/pull/6419#discussion_r747248099



##
File path: 
core/camel-support/src/main/java/org/apache/camel/support/task/BackgroundTask.java
##
@@ -155,7 +155,7 @@ private boolean waitForTaskCompletion(CountDownLatch latch, 
ScheduledExecutorSer
 if (!latch.await(budget.maxDuration(), TimeUnit.MILLISECONDS)) 
{
 LOG.debug("Timeout out waiting for the completion of the 
task");
 } else {
-LOG.info("The task is complete after iterations and the 
code is ready to continue");
+LOG.info("The task has finished the execution is ready to 
continue");

Review comment:
   Done, marking as resolved, thanks!




-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org




[camel] branch main updated (7a52fb0 -> 2318061)

2021-11-10 Thread davsclaus
This is an automated email from the ASF dual-hosted git repository.

davsclaus pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/camel.git.


from 7a52fb0  Regen for commit ea6885d1c997a6da761d672fcc8dc285b6e551c9
 add 2318061  CAMEL-17121: present the awaitConsumer from blocking 
indefinitely (#6421)

No new revisions were added by this update.

Summary of changes:
 .../org/apache/camel/component/directvm/DirectVmBlockingProducer.java  | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)


[GitHub] [camel] orpiske commented on a change in pull request #6419: CAMEL-17121: final cleanups

2021-11-10 Thread GitBox


orpiske commented on a change in pull request #6419:
URL: https://github.com/apache/camel/pull/6419#discussion_r747246510



##
File path: 
core/camel-support/src/main/java/org/apache/camel/support/task/BackgroundTask.java
##
@@ -155,7 +155,7 @@ private boolean waitForTaskCompletion(CountDownLatch latch, 
ScheduledExecutorSer
 if (!latch.await(budget.maxDuration(), TimeUnit.MILLISECONDS)) 
{
 LOG.debug("Timeout out waiting for the completion of the 
task");
 } else {
-LOG.info("The task is complete after iterations and the 
code is ready to continue");
+LOG.info("The task has finished the execution is ready to 
continue");

Review comment:
   Sure thing!




-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org




[GitHub] [camel] davsclaus merged pull request #6421: CAMEL-17121: present the awaitConsumer from blocking indefinitely

2021-11-10 Thread GitBox


davsclaus merged pull request #6421:
URL: https://github.com/apache/camel/pull/6421


   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org




[GitHub] [camel-quarkus] github-actions[bot] commented on issue #2926: [CI] - Quarkus Main Branch Build Failure

2021-11-10 Thread GitBox


github-actions[bot] commented on issue #2926:
URL: https://github.com/apache/camel-quarkus/issues/2926#issuecomment-966038992


   The 
[quarkus-main](https://github.com/apache/camel-quarkus/tree/quarkus-main) 
branch build has failed:
   
   * Build ID: 1447021916-567-2fe0dc09-4019-4434-8f51-13f8c68101d3
   * Camel Quarkus Commit: 6f380341488fb56ca366976fac5cf2dc17d5e0ff
   
   * Quarkus Main Commit: 000d5e1add0af0f7683c5ba8258e3b90bb3b2ad7
   * Link to build: 
https://github.com/apache/camel-quarkus/actions/runs/1447021916


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org




[camel-spring-boot] branch main updated: [create-pull-request] automated change

2021-11-10 Thread acosentino
This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-spring-boot.git


The following commit(s) were added to refs/heads/main by this push:
 new f8593aa  [create-pull-request] automated change
f8593aa is described below

commit f8593aa5ada79fa42bb60eb12636d7cc491c2511
Author: github-actions[bot] 
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Thu Nov 11 00:58:35 2021 +

[create-pull-request] automated change
---
 .../springboot/catalog/components/aws2-kinesis.json  |  2 ++
 .../src/main/docs/aws2-kinesis.json  |  6 ++
 .../springboot/Kinesis2ComponentConfiguration.java   | 16 
 .../kinesis/springboot/Kinesis2ComponentConverter.java   |  2 ++
 .../modules/spring-boot/examples/json/aws2-kinesis.json  |  6 ++
 5 files changed, 32 insertions(+)

diff --git 
a/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/aws2-kinesis.json
 
b/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/aws2-kinesis.json
index 2511392..754b2dc 100644
--- 
a/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/aws2-kinesis.json
+++ 
b/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/aws2-kinesis.json
@@ -36,6 +36,7 @@
 "bridgeErrorHandler": { "kind": "property", "displayName": "Bridge Error 
Handler", "group": "consumer", "label": "consumer", "required": false, "type": 
"boolean", "javaType": "boolean", "deprecated": false, "autowired": false, 
"secret": false, "defaultValue": false, "description": "Allows for bridging the 
consumer to the Camel routing Error Handler, which mean any exceptions occurred 
while the consumer is trying to pickup incoming messages, or the likes, will 
now be processed as a me [...]
 "iteratorType": { "kind": "property", "displayName": "Iterator Type", 
"group": "consumer", "label": "consumer", "required": false, "type": "object", 
"javaType": "software.amazon.awssdk.services.kinesis.model.ShardIteratorType", 
"enum": [ "AT_SEQUENCE_NUMBER", "AFTER_SEQUENCE_NUMBER", "TRIM_HORIZON", 
"LATEST", "AT_TIMESTAMP", "null" ], "deprecated": false, "autowired": false, 
"secret": false, "defaultValue": "TRIM_HORIZON", "configurationClass": 
"org.apache.camel.component.aws2.kinesi [...]
 "maxResultsPerRequest": { "kind": "property", "displayName": "Max Results 
Per Request", "group": "consumer", "label": "consumer", "required": false, 
"type": "integer", "javaType": "int", "deprecated": false, "autowired": false, 
"secret": false, "defaultValue": 1, "configurationClass": 
"org.apache.camel.component.aws2.kinesis.Kinesis2Configuration", 
"configurationField": "configuration", "description": "Maximum number of 
records that will be fetched in each poll" },
+"resumeStrategy": { "kind": "property", "displayName": "Resume Strategy", 
"group": "consumer", "label": "consumer", "required": false, "type": "object", 
"javaType": 
"org.apache.camel.component.aws2.kinesis.consumer.KinesisResumeStrategy", 
"deprecated": false, "autowired": false, "secret": false, "defaultValue": 
"KinesisUserConfigurationResumeStrategy", "configurationClass": 
"org.apache.camel.component.aws2.kinesis.Kinesis2Configuration", 
"configurationField": "configuration", "descri [...]
 "sequenceNumber": { "kind": "property", "displayName": "Sequence Number", 
"group": "consumer", "label": "consumer", "required": false, "type": "string", 
"javaType": "java.lang.String", "deprecated": false, "autowired": false, 
"secret": false, "configurationClass": 
"org.apache.camel.component.aws2.kinesis.Kinesis2Configuration", 
"configurationField": "configuration", "description": "The sequence number to 
start polling from. Required if iteratorType is set to AFTER_SEQUENCE_NUMBER or 
 [...]
 "shardClosed": { "kind": "property", "displayName": "Shard Closed", 
"group": "consumer", "label": "consumer", "required": false, "type": "object", 
"javaType": 
"org.apache.camel.component.aws2.kinesis.Kinesis2ShardClosedStrategyEnum", 
"enum": [ "ignore", "fail", "silent" ], "deprecated": false, "autowired": 
false, "secret": false, "defaultValue": "ignore", "configurationClass": 
"org.apache.camel.component.aws2.kinesis.Kinesis2Configuration", 
"configurationField": "configuration", "des [...]
 "shardId": { "kind": "property", "displayName": "Shard Id", "group": 
"consumer", "label": "consumer", "required": false, "type": "string", 
"javaType": "java.lang.String", "deprecated": false, "autowired": false, 
"secret": false, "configurationClass": 
"org.apache.camel.component.aws2.kinesis.Kinesis2Configuration", 
"configurationField": "configuration", "description": "Defines which shardId in 
the Kinesis stream to get records from" },

[GitHub] [camel] davsclaus commented on a change in pull request #6419: CAMEL-17121: final cleanups

2021-11-10 Thread GitBox


davsclaus commented on a change in pull request #6419:
URL: https://github.com/apache/camel/pull/6419#discussion_r747246185



##
File path: 
core/camel-support/src/main/java/org/apache/camel/support/task/BackgroundTask.java
##
@@ -155,7 +155,7 @@ private boolean waitForTaskCompletion(CountDownLatch latch, 
ScheduledExecutorSer
 if (!latch.await(budget.maxDuration(), TimeUnit.MILLISECONDS)) 
{
 LOG.debug("Timeout out waiting for the completion of the 
task");
 } else {
-LOG.info("The task is complete after iterations and the 
code is ready to continue");
+LOG.info("The task has finished the execution is ready to 
continue");

Review comment:
   Use DEBUG logging level as we should not be noisy during processing 
exchanges in Camel




-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org




[GitHub] [camel-spring-boot] oscerd merged pull request #410: [Github Actions] Periodic Sync Camel Spring Boot Main Branch

2021-11-10 Thread GitBox


oscerd merged pull request #410:
URL: https://github.com/apache/camel-spring-boot/pull/410


   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org




[GitHub] [camel-k] tadayosi edited a comment on pull request #2745: chore(e2e): disable object truncation on test results

2021-11-10 Thread GitBox


tadayosi edited a comment on pull request #2745:
URL: https://github.com/apache/camel-k/pull/2745#issuecomment-965997722


   Now it shows where the mismatch is:
   ```
   === RUN   TestMetrics/reconciliation_duration_metric
   operator_metrics_test.go:256: 
   Expected
   : MetricFamily
   to match fields: {
   .Metric:
Expected
   ...
Histogram: {
SampleCount: 272,
   ...
to contain element matching
   ...
"Histogram": <*gstruct.PointerMatcher | 
0xc00061c140>{
Matcher: <*gstruct.FieldsMatcher | 
0xc000add1d0>{
Fields: {
"SampleCount": 
<*gstruct.PointerMatcher | 0xc00061c120>{
Matcher: 
<*matchers.EqualMatcher | 0xc000c660a0>{Expected: 12},
failure: "Expected\n
: 272\nto equal\n: 12",
},
},
   ```
   
   What a difference! :smiley: 
   `SampleCount: 272 != 12`


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org




[GitHub] [camel-k] tadayosi edited a comment on pull request #2745: chore(e2e): disable object truncation on test results

2021-11-10 Thread GitBox


tadayosi edited a comment on pull request #2745:
URL: https://github.com/apache/camel-k/pull/2745#issuecomment-965997722


   Now it shows where the mismatch is:
   ```
   === RUN   TestMetrics/reconciliation_duration_metric
   operator_metrics_test.go:256: 
   Expected
   : MetricFamily
   to match fields: {
   .Metric:
Expected
   ...
Histogram: {
SampleCount: 272,
   ...
to contain element matching
   ...
"Histogram": <*gstruct.PointerMatcher | 
0xc00061c140>{
Matcher: <*gstruct.FieldsMatcher | 
0xc000add1d0>{
Fields: {
"SampleCount": 
<*gstruct.PointerMatcher | 0xc00061c120>{
Matcher: 
<*matchers.EqualMatcher | 0xc000c660a0>{Expected: 12},
failure: "Expected\n
: 272\nto equal\n: 12",
},
},
   ```
   
   What a different! :smiley: 
   `SampleCount: 272 != 12`


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org




[GitHub] [camel-k] tadayosi commented on pull request #2745: chore(e2e): disable object truncation on test results

2021-11-10 Thread GitBox


tadayosi commented on pull request #2745:
URL: https://github.com/apache/camel-k/pull/2745#issuecomment-965997722


   Now it shows where the mismatch is:
   ```
   === RUN   TestMetrics/reconciliation_duration_metric
   operator_metrics_test.go:256: 
   Expected
   : MetricFamily
   to match fields: {
   .Metric:
Expected
   ...
Histogram: {
SampleCount: 272,
   ...
to contain element matching
   ...
"Histogram": <*gstruct.PointerMatcher | 
0xc00061c140>{
Matcher: <*gstruct.FieldsMatcher | 
0xc000add1d0>{
Fields: {
"SampleCount": 
<*gstruct.PointerMatcher | 0xc00061c120>{
Matcher: 
<*matchers.EqualMatcher | 0xc000c660a0>{Expected: 12},
failure: "Expected\n
: 272\nto equal\n: 12",
},
},
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org




[GitHub] [camel-quarkus] github-actions[bot] commented on issue #2927: [CI] - Camel Main Branch Build Failure

2021-11-10 Thread GitBox


github-actions[bot] commented on issue #2927:
URL: https://github.com/apache/camel-quarkus/issues/2927#issuecomment-965974565


   The [camel-main](https://github.com/apache/camel-quarkus/tree/camel-main) 
branch build has failed:
   
   * Build ID: 1446686205-463-67cf23e5-78a7-4dfd-a054-ff4ef0fad11b
   * Camel Quarkus Commit: 8f7db2a10caa08c86a94c9a15c5cad44dbd58e56
   
   * Camel Main Commit: 000d5e1add0af0f7683c5ba8258e3b90bb3b2ad7
   * Link to build: 
https://github.com/apache/camel-quarkus/actions/runs/1446686205


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org




[GitHub] [camel-quarkus] jamesnetherton opened a new issue #2927: [CI] - Camel Main Branch Build Failure

2021-11-10 Thread GitBox


jamesnetherton opened a new issue #2927:
URL: https://github.com/apache/camel-quarkus/issues/2927


   This is a placeholder issue used by the [nightly sync 
workflow](https://github.com/apache/camel-quarkus/actions/workflows/camel-master-cron.yaml)
 for the 
[`camel-main`](https://github.com/apache/camel-quarkus/tree/camel-main) branch.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org




[GitHub] [camel-k] tadayosi opened a new pull request #2745: chore(e2e): disable object truncation on test results

2021-11-10 Thread GitBox


tadayosi opened a new pull request #2745:
URL: https://github.com/apache/camel-k/pull/2745


   
   
   Relates to #2742
   
   
   
   
   **Release Note**
   ```release-note
   NONE
   ```
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org




[camel-quarkus] branch main updated: Updated CHANGELOG.md

2021-11-10 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git


The following commit(s) were added to refs/heads/main by this push:
 new 72cee53  Updated CHANGELOG.md
72cee53 is described below

commit 72cee536be7819239e498764133a900fc79e63a0
Author: github-actions[bot] 
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Thu Nov 11 03:09:30 2021 +

Updated CHANGELOG.md
---
 CHANGELOG.md | 4 
 1 file changed, 4 insertions(+)

diff --git a/CHANGELOG.md b/CHANGELOG.md
index 8c3fd77..8e92625 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -6,6 +6,7 @@
 
 **Closed issues:**
 
+- AWS Integration test doesn't clean bucket 
[\#3276](https://github.com/apache/camel-quarkus/issues/3276)
 - \[camel 3.13.0\]compilation failure in ftp integration test which is caused 
by recent SSHD upgrade in Camel 3.13 
[\#3274](https://github.com/apache/camel-quarkus/issues/3274)
 - avro: fix the documentation about avro schema build time parsing 
[\#3270](https://github.com/apache/camel-quarkus/issues/3270)
 - Cannot run tests against alternative BOMs 
[\#3258](https://github.com/apache/camel-quarkus/issues/3258)
@@ -22,6 +23,9 @@
 
 **Merged pull requests:**
 
+- Fixup 218bef4 Special fix for JMS extensions depending on 
[\#3286](https://github.com/apache/camel-quarkus/pull/3286) 
([ppalaga](https://github.com/ppalaga))
+- Remove BOM reference to non existent camel-quarkus-xstream-common-deployment 
dependency [\#3285](https://github.com/apache/camel-quarkus/pull/3285) 
([jamesnetherton](https://github.com/jamesnetherton))
+- Fix \#3276 to make sure all objects have been deleted after each test … 
[\#3279](https://github.com/apache/camel-quarkus/pull/3279) 
([zhfeng](https://github.com/zhfeng))
 - Fixup 218bef4 Special fix for Solr - Cannot run tests against 
[\#3278](https://github.com/apache/camel-quarkus/pull/3278) 
([ppalaga](https://github.com/ppalaga))
 - avro: Fix the documentation about avro schema build time parsing \#3270 
[\#3271](https://github.com/apache/camel-quarkus/pull/3271) 
([aldettinger](https://github.com/aldettinger))
 - Remove not needed anymore BeansWeakCache substitution. Closes \#3226 
[\#3264](https://github.com/apache/camel-quarkus/pull/3264) 
([vladimirfx](https://github.com/vladimirfx))


[camel-k] branch main updated: Updated CHANGELOG.md

2021-11-10 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-k.git


The following commit(s) were added to refs/heads/main by this push:
 new d3ce110  Updated CHANGELOG.md
d3ce110 is described below

commit d3ce110b1fa949e93625902591ccf7d98acbdeea
Author: github-actions[bot] 
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Thu Nov 11 03:09:27 2021 +

Updated CHANGELOG.md
---
 CHANGELOG.md | 200 +--
 1 file changed, 111 insertions(+), 89 deletions(-)

diff --git a/CHANGELOG.md b/CHANGELOG.md
index e56a2b0..29c1477 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,37 +2,15 @@
 
 ## [Unreleased](https://github.com/apache/camel-k/tree/HEAD)
 
-[Full Changelog](https://github.com/apache/camel-k/compare/v1.6.1...HEAD)
+[Full Changelog](https://github.com/apache/camel-k/compare/v1.7.0...HEAD)
 
 **Closed issues:**
 
-- 02-serverless-api example fails in the camel-k-examples repo \(same as 
\#2400\) [\#2738](https://github.com/apache/camel-k/issues/2738)
-- ErrorHandler for stopping a route when an error occurs 
[\#2724](https://github.com/apache/camel-k/issues/2724)
-- Release 1.6.1 [\#2713](https://github.com/apache/camel-k/issues/2713)
-- Building with buildah not working 
[\#2685](https://github.com/apache/camel-k/issues/2685)
-- Flaky TestKameletBindingScale test? 
[\#2660](https://github.com/apache/camel-k/issues/2660)
-- CloudEvent header mapping is confusing 
[\#2501](https://github.com/apache/camel-k/issues/2501)
-- `Kamel local` chokes on traits 
[\#2499](https://github.com/apache/camel-k/issues/2499)
-- Revisit saga example [\#2472](https://github.com/apache/camel-k/issues/2472)
-- kamel run command creates 2 pods 
[\#2469](https://github.com/apache/camel-k/issues/2469)
-- Trying to use bean method call 
\#class:com.mongodb.client.MongoClients\#create\("mongodb://foo"\) throws 
ClassNotFoundException [\#2444](https://github.com/apache/camel-k/issues/2444)
-- kamelet binding: support for openapi ? 
[\#2409](https://github.com/apache/camel-k/issues/2409)
-- kamel uninstall should uninstall everything by default 
[\#2405](https://github.com/apache/camel-k/issues/2405)
-- `kamel run --maven-repository` doesn't work when we have `@mirrorOf=*` at 
`kamel install` [\#2391](https://github.com/apache/camel-k/issues/2391)
-- kamel subcommand for kamelet bindings? 
[\#2363](https://github.com/apache/camel-k/issues/2363)
-- build: install required binaries in a temporary subdirectory of the project 
[\#2335](https://github.com/apache/camel-k/issues/2335)
-- build: update to latest golangci-lint 
[\#2333](https://github.com/apache/camel-k/issues/2333)
-- "cannot find symbol" issue in camel-k releases v1.4.0 
[\#2317](https://github.com/apache/camel-k/issues/2317)
-- Leverage KinD multi-nodes cluster setup for CI 
[\#2302](https://github.com/apache/camel-k/issues/2302)
-- Docs validation CI workflow 
[\#2278](https://github.com/apache/camel-k/issues/2278)
-- Kamel reset fails with KameletBinding 
[\#2221](https://github.com/apache/camel-k/issues/2221)
-- Kamel dump: make the command smarter 
[\#2189](https://github.com/apache/camel-k/issues/2189)
-- Refactoring dump function 
[\#2172](https://github.com/apache/camel-k/issues/2172)
-- Use environment independent `operator-sdk` CLI version 
[\#2167](https://github.com/apache/camel-k/issues/2167)
-- Extend config docs to reflect all possibilities coming from camel 
[\#2153](https://github.com/apache/camel-k/issues/2153)
+- Camel-K - uninstall and namespace deletion w/ k8s let all Camel-K 
Integrations in this namespace alive 
[\#2533](https://github.com/apache/camel-k/issues/2533)
 
 **Merged pull requests:**
 
+- feat: Health trait [\#2740](https://github.com/apache/camel-k/pull/2740) 
([astefanutti](https://github.com/astefanutti))
 - fix\(e2e\): Update latest released version to fix upgrade tests 
[\#2734](https://github.com/apache/camel-k/pull/2734) 
([astefanutti](https://github.com/astefanutti))
 - chore: Upgrade Knative to version 1.0.0 
[\#2733](https://github.com/apache/camel-k/pull/2733) 
([astefanutti](https://github.com/astefanutti))
 - chore\(sbo\): upgrade Servce Binding Operator to 1.0.0 GA 
[\#2729](https://github.com/apache/camel-k/pull/2729) 
([johnpoth](https://github.com/johnpoth))
@@ -687,21 +665,65 @@
 - Allow the short syntax in knative endpoints 
[\#1458](https://github.com/apache/camel-k/pull/1458) 
([nicolaferraro](https://github.com/nicolaferraro))
 - Remove unused import package in example 
[\#1457](https://github.com/apache/camel-k/pull/1457) 
([apupier](https://github.com/apupier))
 
+## [v1.7.0](https://github.com/apache/camel-k/tree/v1.7.0) (2021-11-10)
+
+[Full 
Changelog](https://github.com/apache/camel-k/compare/pkg/client/camel/v1.7.0...v1.7.0)
+
+## 
[pkg/client/camel/v1.7.0](https://github.com/apache/camel-k/tree/pkg/client/camel/v1.7.0)
 

[GitHub] [camel-k] tadayosi commented on issue #2742: [E2E] Reconciliation duration metric failure

2021-11-10 Thread GitBox


tadayosi commented on issue #2742:
URL: https://github.com/apache/camel-k/issues/2742#issuecomment-965943033


   By the way, when we use Gomega's structural matches the diffs at test 
failure can be really lengthy and thus truncated by default. In the above case, 
the real mismatch is hidden in the truncated part.
   
   If we are ok, probably we should add:
   ```
   format.MaxLength = 0
   ```
   somewhere in `test_support.go` to disable the diff truncation.
   https://onsi.github.io/gomega/#adjusting-output


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org




[GitHub] [camel-quarkus] zhfeng commented on pull request #3287: Fix #3284 to get kafka.bootstrap.servers from DevServicesLauncherConf…

2021-11-10 Thread GitBox


zhfeng commented on pull request #3287:
URL: https://github.com/apache/camel-quarkus/pull/3287#issuecomment-965916752


   I'm afraid that we can not produce ```DevServicesConfigResultBuildItem``` 
since there is a dependency cycle.  So I think we should abondond these two 
commits in ```quarkus-main``` 
https://github.com/apache/camel-quarkus/commit/f96c117e3179621726af06dc23dcefe6efd4e103
 and 
https://github.com/apache/camel-quarkus/commit/dc5be32f7ad77890e7bd006bb098b83f956d3639


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org




[GitHub] [camel-quarkus] zhfeng commented on pull request #3287: Fix #3284 to get kafka.bootstrap.servers from DevServicesLauncherConf…

2021-11-10 Thread GitBox


zhfeng commented on pull request #3287:
URL: https://github.com/apache/camel-quarkus/pull/3287#issuecomment-965914201


   @jamesnetherton I think this fix could be conflict with 
https://github.com/apache/camel-quarkus/commit/f96c117e3179621726af06dc23dcefe6efd4e103
 in ```quarkus-main```.
   
   So please take care of merging ```quarkus-main``` to ```main```. Thanks !


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org




[GitHub] [camel-quarkus] zhfeng opened a new pull request #3287: Fix #3284 to get kafka.bootstrap.servers from DevServicesLauncherConf…

2021-11-10 Thread GitBox


zhfeng opened a new pull request #3287:
URL: https://github.com/apache/camel-quarkus/pull/3287


   …igResultBuildItem
   
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org




[GitHub] [camel-quarkus] zhfeng edited a comment on issue #3284: quarkus:dev NPE KafkaProcessor.configureKafkaComponentForDevServices(KafkaProcessor.java:65)

2021-11-10 Thread GitBox


zhfeng edited a comment on issue #3284:
URL: https://github.com/apache/camel-quarkus/issues/3284#issuecomment-965910433


   We need to get the kafka broker info from 
```DevServicesLauncherConfigResultBuildItem``` instead of 
```DevServicesKafkaBrokerBuildItem```.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org




[GitHub] [camel-quarkus] zhfeng commented on issue #3284: quarkus:dev NPE KafkaProcessor.configureKafkaComponentForDevServices(KafkaProcessor.java:65)

2021-11-10 Thread GitBox


zhfeng commented on issue #3284:
URL: https://github.com/apache/camel-quarkus/issues/3284#issuecomment-965910433


   We need to get the kafka broker from 
```DevServicesLauncherConfigResultBuildItem```.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org




[GitHub] [camel-spring-boot] github-actions[bot] opened a new pull request #410: [Github Actions] Periodic Sync Camel Spring Boot Main Branch

2021-11-10 Thread GitBox


github-actions[bot] opened a new pull request #410:
URL: https://github.com/apache/camel-spring-boot/pull/410


   Periodic Sync of Camel Spring Boot Main Branch with main Camel Main.
   see 
https://github.com/apache/camel-spring-boot/blob/main/.github/workflows/automatic-sync-main.yml


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org




[camel-spring-boot] branch automatic-periodic-sync created (now 07d1f50)

2021-11-10 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch automatic-periodic-sync
in repository https://gitbox.apache.org/repos/asf/camel-spring-boot.git.


  at 07d1f50  [create-pull-request] automated change

No new revisions were added by this update.


[GitHub] [camel-website] github-actions[bot] commented on pull request #667: Resolves #666: (Do not merge yet) Main aggregate collector/page generation

2021-11-10 Thread GitBox


github-actions[bot] commented on pull request #667:
URL: https://github.com/apache/camel-website/pull/667#issuecomment-965892069


    Preview is available at https://pr-667--camel.netlify.app


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org




[GitHub] [camel-k] github-actions[bot] closed issue #2533: Camel-K - uninstall and namespace deletion w/ k8s let all Camel-K Integrations in this namespace alive

2021-11-10 Thread GitBox


github-actions[bot] closed issue #2533:
URL: https://github.com/apache/camel-k/issues/2533


   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org




[GitHub] [camel-quarkus] ppalaga merged pull request #3286: Fixup 218bef4 Special fix for JMS extensions depending on

2021-11-10 Thread GitBox


ppalaga merged pull request #3286:
URL: https://github.com/apache/camel-quarkus/pull/3286


   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org




[camel-quarkus] branch main updated: Fixup 218bef4 Special fix for JMS extensions depending on quarkus-qpid-jms - Cannot run tests against alternative BOMs #3258

2021-11-10 Thread ppalaga
This is an automated email from the ASF dual-hosted git repository.

ppalaga pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git


The following commit(s) were added to refs/heads/main by this push:
 new 000d5e1  Fixup 218bef4 Special fix for JMS extensions depending on 
quarkus-qpid-jms - Cannot run tests against alternative BOMs #3258
000d5e1 is described below

commit 000d5e1add0af0f7683c5ba8258e3b90bb3b2ad7
Author: Peter Palaga 
AuthorDate: Wed Nov 10 15:32:09 2021 +0100

Fixup 218bef4 Special fix for JMS extensions depending on
quarkus-qpid-jms - Cannot run tests against alternative BOMs #3258
---
 integration-tests/jms-qpid-amqp-client/pom.xml   | 19 +++
 integration-tests/sjms-qpid-amqp-client/pom.xml  | 19 +++
 integration-tests/sjms2-qpid-amqp-client/pom.xml | 19 +++
 3 files changed, 57 insertions(+)

diff --git a/integration-tests/jms-qpid-amqp-client/pom.xml 
b/integration-tests/jms-qpid-amqp-client/pom.xml
index 94bbfc3..a6b8192 100644
--- a/integration-tests/jms-qpid-amqp-client/pom.xml
+++ b/integration-tests/jms-qpid-amqp-client/pom.xml
@@ -134,6 +134,25 @@
 
 
 
+
+quarkus-platform
+
+
+quarkus.platform.version
+
+
+
+
+
+com.redhat.quarkus
+quarkus-universe-bom
+${quarkus.platform.version}
+pom
+import
+
+
+
+
 
 
 
diff --git a/integration-tests/sjms-qpid-amqp-client/pom.xml 
b/integration-tests/sjms-qpid-amqp-client/pom.xml
index a64f2a1..1e683af 100644
--- a/integration-tests/sjms-qpid-amqp-client/pom.xml
+++ b/integration-tests/sjms-qpid-amqp-client/pom.xml
@@ -134,6 +134,25 @@
 
 
 
+
+quarkus-platform
+
+
+quarkus.platform.version
+
+
+
+
+
+com.redhat.quarkus
+quarkus-universe-bom
+${quarkus.platform.version}
+pom
+import
+
+
+
+
 
 
 
diff --git a/integration-tests/sjms2-qpid-amqp-client/pom.xml 
b/integration-tests/sjms2-qpid-amqp-client/pom.xml
index 97ee5e5..a181e8f 100644
--- a/integration-tests/sjms2-qpid-amqp-client/pom.xml
+++ b/integration-tests/sjms2-qpid-amqp-client/pom.xml
@@ -134,6 +134,25 @@
 
 
 
+
+quarkus-platform
+
+
+quarkus.platform.version
+
+
+
+
+
+com.redhat.quarkus
+quarkus-universe-bom
+${quarkus.platform.version}
+pom
+import
+
+
+
+
 
 
 


[camel-kamelets] branch regen_bot updated (ac5e68b -> f059669)

2021-11-10 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch regen_bot
in repository https://gitbox.apache.org/repos/asf/camel-kamelets.git.


from ac5e68b  Added Couchbase Sink Kamelet
 add f059669  mflinn-kamelet-template-minor-fix

No new revisions were added by this update.

Summary of changes:
 docs/modules/ROOT/kamelet.adoc.tmpl | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)


[GitHub] [camel-kamelets] oscerd merged pull request #567: mflinn-kamelet-template-minor-fix

2021-11-10 Thread GitBox


oscerd merged pull request #567:
URL: https://github.com/apache/camel-kamelets/pull/567


   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org




[camel-kamelets] branch main updated: mflinn-kamelet-template-minor-fix

2021-11-10 Thread acosentino
This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-kamelets.git


The following commit(s) were added to refs/heads/main by this push:
 new f059669  mflinn-kamelet-template-minor-fix
f059669 is described below

commit f0596691aa5c3d7e0288cff206ea7aae0a7c6ce9
Author: MelissaFlinn 
AuthorDate: Wed Nov 10 15:02:04 2021 -0500

mflinn-kamelet-template-minor-fix
---
 docs/modules/ROOT/kamelet.adoc.tmpl | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docs/modules/ROOT/kamelet.adoc.tmpl 
b/docs/modules/ROOT/kamelet.adoc.tmpl
index 8410453..93e943e 100644
--- a/docs/modules/ROOT/kamelet.adoc.tmpl
+++ b/docs/modules/ROOT/kamelet.adoc.tmpl
@@ -19,7 +19,7 @@ The `{{ .Kamelet.ObjectMeta.Name }}` Kamelet does not specify 
any configuration
 
 == Dependencies
 
-At runtime, the `{{ .Kamelet.ObjectMeta.Name }} Kamelet relies upon the 
presence of the following dependencies:
+At runtime, the `{{ .Kamelet.ObjectMeta.Name }}` Kamelet relies upon the 
presence of the following dependencies:
 {{range .Kamelet.Spec.Dependencies}}
 - {{ . }}{{end}} 
 


[GitHub] [camel-kamelets] MelissaFlinn opened a new pull request #567: mflinn-kamelet-template-minor-fix

2021-11-10 Thread GitBox


MelissaFlinn opened a new pull request #567:
URL: https://github.com/apache/camel-kamelets/pull/567


   This PR includes a very minor typo fix to the Kamelets template
   Note that I do not have permissions to merge approved PRs


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org




[GitHub] [camel] oscerd closed pull request #6422: Generated sources regen

2021-11-10 Thread GitBox


oscerd closed pull request #6422:
URL: https://github.com/apache/camel/pull/6422


   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org




[camel] branch regen_bot updated (9e14355 -> e88b1dc)

2021-11-10 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch regen_bot
in repository https://gitbox.apache.org/repos/asf/camel.git.


omit 9e14355  Regen for commit ea6885d1c997a6da761d672fcc8dc285b6e551c9
 add 7a52fb0  Regen for commit ea6885d1c997a6da761d672fcc8dc285b6e551c9
 add e88b1dc  Regen for commit 7a52fb094a0d307a65ff29104d1ad21f143ffc74

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (9e14355)
\
 N -- N -- N   refs/heads/regen_bot (e88b1dc)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

No new revisions were added by this update.

Summary of changes:
 .../sql/stored/template/generated/SSPTParser.java  |  833 +++--
 .../template/generated/SSPTParserConstants.java|  110 +-
 .../template/generated/SSPTParserTokenManager.java | 1222 ++--
 3 files changed, 1072 insertions(+), 1093 deletions(-)


[GitHub] [camel] github-actions[bot] opened a new pull request #6422: Generated sources regen

2021-11-10 Thread GitBox


github-actions[bot] opened a new pull request #6422:
URL: https://github.com/apache/camel/pull/6422


   Regen bot :robot: found some uncommited changes after running build on 
:camel: main.
   Please do not delete `regen_bot` branch after merge/rebase.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org




[GitHub] [camel] orpiske commented on pull request #6421: CAMEL-17121: present the awaitConsumer from blocking indefinitely

2021-11-10 Thread GitBox


orpiske commented on pull request #6421:
URL: https://github.com/apache/camel/pull/6421#issuecomment-965637293


   @davsclaus this should fix the block (in case we want to retain the patch 
instead of reverting it). 


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org




[GitHub] [camel] orpiske opened a new pull request #6421: CAMEL-17121: present the awaitConsumer from blocking indefinitely

2021-11-10 Thread GitBox


orpiske opened a new pull request #6421:
URL: https://github.com/apache/camel/pull/6421


   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org




[camel] branch main updated: Regen for commit ea6885d1c997a6da761d672fcc8dc285b6e551c9

2021-11-10 Thread acosentino
This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel.git


The following commit(s) were added to refs/heads/main by this push:
 new 7a52fb0  Regen for commit ea6885d1c997a6da761d672fcc8dc285b6e551c9
7a52fb0 is described below

commit 7a52fb094a0d307a65ff29104d1ad21f143ffc74
Author: orpiske 
AuthorDate: Wed Nov 10 18:28:17 2021 +

Regen for commit ea6885d1c997a6da761d672fcc8dc285b6e551c9

Signed-off-by: GitHub 
---
 .../resources/org/apache/camel/catalog/components/aws2-kinesis.json | 2 ++
 1 file changed, 2 insertions(+)

diff --git 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/aws2-kinesis.json
 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/aws2-kinesis.json
index bc7981b..51a2f4c 100644
--- 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/aws2-kinesis.json
+++ 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/aws2-kinesis.json
@@ -36,6 +36,7 @@
 "bridgeErrorHandler": { "kind": "property", "displayName": "Bridge Error 
Handler", "group": "consumer", "label": "consumer", "required": false, "type": 
"boolean", "javaType": "boolean", "deprecated": false, "autowired": false, 
"secret": false, "defaultValue": false, "description": "Allows for bridging the 
consumer to the Camel routing Error Handler, which mean any exceptions occurred 
while the consumer is trying to pickup incoming messages, or the likes, will 
now be processed as a me [...]
 "iteratorType": { "kind": "property", "displayName": "Iterator Type", 
"group": "consumer", "label": "consumer", "required": false, "type": "object", 
"javaType": "software.amazon.awssdk.services.kinesis.model.ShardIteratorType", 
"enum": [ "AT_SEQUENCE_NUMBER", "AFTER_SEQUENCE_NUMBER", "TRIM_HORIZON", 
"LATEST", "AT_TIMESTAMP", "null" ], "deprecated": false, "autowired": false, 
"secret": false, "defaultValue": "TRIM_HORIZON", "configurationClass": 
"org.apache.camel.component.aws2.kinesi [...]
 "maxResultsPerRequest": { "kind": "property", "displayName": "Max Results 
Per Request", "group": "consumer", "label": "consumer", "required": false, 
"type": "integer", "javaType": "int", "deprecated": false, "autowired": false, 
"secret": false, "defaultValue": 1, "configurationClass": 
"org.apache.camel.component.aws2.kinesis.Kinesis2Configuration", 
"configurationField": "configuration", "description": "Maximum number of 
records that will be fetched in each poll" },
+"resumeStrategy": { "kind": "property", "displayName": "Resume Strategy", 
"group": "consumer", "label": "consumer", "required": false, "type": "object", 
"javaType": 
"org.apache.camel.component.aws2.kinesis.consumer.KinesisResumeStrategy", 
"deprecated": false, "autowired": false, "secret": false, "defaultValue": 
"KinesisUserConfigurationResumeStrategy", "configurationClass": 
"org.apache.camel.component.aws2.kinesis.Kinesis2Configuration", 
"configurationField": "configuration", "descri [...]
 "sequenceNumber": { "kind": "property", "displayName": "Sequence Number", 
"group": "consumer", "label": "consumer", "required": false, "type": "string", 
"javaType": "java.lang.String", "deprecated": false, "autowired": false, 
"secret": false, "configurationClass": 
"org.apache.camel.component.aws2.kinesis.Kinesis2Configuration", 
"configurationField": "configuration", "description": "The sequence number to 
start polling from. Required if iteratorType is set to AFTER_SEQUENCE_NUMBER or 
 [...]
 "shardClosed": { "kind": "property", "displayName": "Shard Closed", 
"group": "consumer", "label": "consumer", "required": false, "type": "object", 
"javaType": 
"org.apache.camel.component.aws2.kinesis.Kinesis2ShardClosedStrategyEnum", 
"enum": [ "ignore", "fail", "silent" ], "deprecated": false, "autowired": 
false, "secret": false, "defaultValue": "ignore", "configurationClass": 
"org.apache.camel.component.aws2.kinesis.Kinesis2Configuration", 
"configurationField": "configuration", "des [...]
 "shardId": { "kind": "property", "displayName": "Shard Id", "group": 
"consumer", "label": "consumer", "required": false, "type": "string", 
"javaType": "java.lang.String", "deprecated": false, "autowired": false, 
"secret": false, "configurationClass": 
"org.apache.camel.component.aws2.kinesis.Kinesis2Configuration", 
"configurationField": "configuration", "description": "Defines which shardId in 
the Kinesis stream to get records from" },
@@ -59,6 +60,7 @@
 "bridgeErrorHandler": { "kind": "parameter", "displayName": "Bridge Error 
Handler", "group": "consumer", "label": "consumer", "required": false, "type": 
"boolean", "javaType": "boolean", "deprecated": false, "autowired": false, 
"secret": false, "defaultValue": false, "description": "Allows for bridging the 
consumer to the Camel routing Error Handler, which 

[GitHub] [camel] oscerd merged pull request #6420: Generated sources regen

2021-11-10 Thread GitBox


oscerd merged pull request #6420:
URL: https://github.com/apache/camel/pull/6420


   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org




[camel] branch regen_bot updated (3200bd9 -> 9e14355)

2021-11-10 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch regen_bot
in repository https://gitbox.apache.org/repos/asf/camel.git.


from 3200bd9  Builds current otel context depending on the exchange's 
baggage state
 add ea6885d  CAMEL-17186: added support for resume strategies for AWS2 
Kinesis
 add 9e14355  Regen for commit ea6885d1c997a6da761d672fcc8dc285b6e551c9

No new revisions were added by this update.

Summary of changes:
 .../camel/catalog/components/aws2-kinesis.json |  2 +
 .../aws2/kinesis/Kinesis2ComponentConfigurer.java  |  6 +++
 .../aws2/kinesis/Kinesis2EndpointConfigurer.java   |  6 +++
 .../aws2/kinesis/Kinesis2EndpointUriFactory.java   |  3 +-
 .../camel/component/aws2/kinesis/aws2-kinesis.json |  2 +
 .../aws2/kinesis/Kinesis2Configuration.java| 14 +++
 .../component/aws2/kinesis/Kinesis2Consumer.java   | 23 +++-
 .../kinesis/consumer/KinesisResumeStrategy.java}   |  8 ++--
 .../KinesisUserConfigurationResumeStrategy.java| 43 ++
 .../dsl/Aws2KinesisComponentBuilderFactory.java| 19 ++
 .../dsl/Kinesis2EndpointBuilderFactory.java| 36 ++
 11 files changed, 147 insertions(+), 15 deletions(-)
 copy 
components/{camel-couchdb/src/main/java/org/apache/camel/component/couchdb/consumer/CouchDbResumeStrategy.java
 => 
camel-aws/camel-aws2-kinesis/src/main/java/org/apache/camel/component/aws2/kinesis/consumer/KinesisResumeStrategy.java}
 (78%)
 create mode 100644 
components/camel-aws/camel-aws2-kinesis/src/main/java/org/apache/camel/component/aws2/kinesis/consumer/KinesisUserConfigurationResumeStrategy.java


[GitHub] [camel] github-actions[bot] opened a new pull request #6420: Generated sources regen

2021-11-10 Thread GitBox


github-actions[bot] opened a new pull request #6420:
URL: https://github.com/apache/camel/pull/6420


   Regen bot :robot: found some uncommited changes after running build on 
:camel: main.
   Please do not delete `regen_bot` branch after merge/rebase.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org




[camel] branch regen_bot updated (59edfdd -> 3200bd9)

2021-11-10 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch regen_bot
in repository https://gitbox.apache.org/repos/asf/camel.git.


from 59edfdd  CAMEL-17221 - Use Debug log level for Foreground Task
 add 3200bd9  Builds current otel context depending on the exchange's 
baggage state

No new revisions were added by this update.

Summary of changes:
 .../java/org/apache/camel/opentelemetry/OpenTelemetryTracer.java   | 7 ++-
 1 file changed, 6 insertions(+), 1 deletion(-)


[camel] branch regen_bot updated (33a7ad6 -> 59edfdd)

2021-11-10 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch regen_bot
in repository https://gitbox.apache.org/repos/asf/camel.git.


from 33a7ad6  [CAMEL-17176] Fix error in unit test
 add 59edfdd  CAMEL-17221 - Use Debug log level for Foreground Task

No new revisions were added by this update.

Summary of changes:
 .../java/org/apache/camel/support/task/ForegroundTask.java   | 12 ++--
 1 file changed, 6 insertions(+), 6 deletions(-)


[GitHub] [camel] orpiske opened a new pull request #6419: CAMEL-17121: final cleanups

2021-11-10 Thread GitBox


orpiske opened a new pull request #6419:
URL: https://github.com/apache/camel/pull/6419


   - Added documentation details
   - Fixed typos
   - Fixed/improved log messages
   - Used final for a few variables
   
   
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org




[camel] branch main updated: CAMEL-17186: added support for resume strategies for AWS2 Kinesis

2021-11-10 Thread orpiske
This is an automated email from the ASF dual-hosted git repository.

orpiske pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel.git


The following commit(s) were added to refs/heads/main by this push:
 new ea6885d  CAMEL-17186: added support for resume strategies for AWS2 
Kinesis
ea6885d is described below

commit ea6885d1c997a6da761d672fcc8dc285b6e551c9
Author: Otavio Rodolfo Piske 
AuthorDate: Wed Nov 10 13:30:54 2021 +0100

CAMEL-17186: added support for resume strategies for AWS2 Kinesis
---
 .../aws2/kinesis/Kinesis2ComponentConfigurer.java  |  6 +++
 .../aws2/kinesis/Kinesis2EndpointConfigurer.java   |  6 +++
 .../aws2/kinesis/Kinesis2EndpointUriFactory.java   |  3 +-
 .../camel/component/aws2/kinesis/aws2-kinesis.json |  2 +
 .../aws2/kinesis/Kinesis2Configuration.java| 14 +++
 .../component/aws2/kinesis/Kinesis2Consumer.java   | 23 +++-
 .../kinesis/consumer/KinesisResumeStrategy.java| 25 +
 .../KinesisUserConfigurationResumeStrategy.java| 43 ++
 .../dsl/Aws2KinesisComponentBuilderFactory.java| 19 ++
 .../dsl/Kinesis2EndpointBuilderFactory.java| 36 ++
 10 files changed, 167 insertions(+), 10 deletions(-)

diff --git 
a/components/camel-aws/camel-aws2-kinesis/src/generated/java/org/apache/camel/component/aws2/kinesis/Kinesis2ComponentConfigurer.java
 
b/components/camel-aws/camel-aws2-kinesis/src/generated/java/org/apache/camel/component/aws2/kinesis/Kinesis2ComponentConfigurer.java
index 1a15fdc..97bb77a 100644
--- 
a/components/camel-aws/camel-aws2-kinesis/src/generated/java/org/apache/camel/component/aws2/kinesis/Kinesis2ComponentConfigurer.java
+++ 
b/components/camel-aws/camel-aws2-kinesis/src/generated/java/org/apache/camel/component/aws2/kinesis/Kinesis2ComponentConfigurer.java
@@ -54,6 +54,8 @@ public class Kinesis2ComponentConfigurer extends 
PropertyConfigurerSupport imple
 case "proxyprotocol":
 case "proxyProtocol": 
getOrCreateConfiguration(target).setProxyProtocol(property(camelContext, 
software.amazon.awssdk.core.Protocol.class, value)); return true;
 case "region": 
getOrCreateConfiguration(target).setRegion(property(camelContext, 
java.lang.String.class, value)); return true;
+case "resumestrategy":
+case "resumeStrategy": 
getOrCreateConfiguration(target).setResumeStrategy(property(camelContext, 
org.apache.camel.component.aws2.kinesis.consumer.KinesisResumeStrategy.class, 
value)); return true;
 case "secretkey":
 case "secretKey": 
getOrCreateConfiguration(target).setSecretKey(property(camelContext, 
java.lang.String.class, value)); return true;
 case "sequencenumber":
@@ -106,6 +108,8 @@ public class Kinesis2ComponentConfigurer extends 
PropertyConfigurerSupport imple
 case "proxyprotocol":
 case "proxyProtocol": return 
software.amazon.awssdk.core.Protocol.class;
 case "region": return java.lang.String.class;
+case "resumestrategy":
+case "resumeStrategy": return 
org.apache.camel.component.aws2.kinesis.consumer.KinesisResumeStrategy.class;
 case "secretkey":
 case "secretKey": return java.lang.String.class;
 case "sequencenumber":
@@ -154,6 +158,8 @@ public class Kinesis2ComponentConfigurer extends 
PropertyConfigurerSupport imple
 case "proxyprotocol":
 case "proxyProtocol": return 
getOrCreateConfiguration(target).getProxyProtocol();
 case "region": return getOrCreateConfiguration(target).getRegion();
+case "resumestrategy":
+case "resumeStrategy": return 
getOrCreateConfiguration(target).getResumeStrategy();
 case "secretkey":
 case "secretKey": return 
getOrCreateConfiguration(target).getSecretKey();
 case "sequencenumber":
diff --git 
a/components/camel-aws/camel-aws2-kinesis/src/generated/java/org/apache/camel/component/aws2/kinesis/Kinesis2EndpointConfigurer.java
 
b/components/camel-aws/camel-aws2-kinesis/src/generated/java/org/apache/camel/component/aws2/kinesis/Kinesis2EndpointConfigurer.java
index b165e71..00e68d0 100644
--- 
a/components/camel-aws/camel-aws2-kinesis/src/generated/java/org/apache/camel/component/aws2/kinesis/Kinesis2EndpointConfigurer.java
+++ 
b/components/camel-aws/camel-aws2-kinesis/src/generated/java/org/apache/camel/component/aws2/kinesis/Kinesis2EndpointConfigurer.java
@@ -62,6 +62,8 @@ public class Kinesis2EndpointConfigurer extends 
PropertyConfigurerSupport implem
 case "region": 
target.getConfiguration().setRegion(property(camelContext, 
java.lang.String.class, value)); return true;
 case "repeatcount":
 case "repeatCount": target.setRepeatCount(property(camelContext, 
long.class, value)); return true;
+case "resumestrategy":
+case "resumeStrategy": 
target.getConfiguration().setResumeStrategy(property(camelContext, 

[GitHub] [camel] orpiske merged pull request #6415: CAMEL-17186: added support for resume strategies for AWS2 Kinesis

2021-11-10 Thread GitBox


orpiske merged pull request #6415:
URL: https://github.com/apache/camel/pull/6415


   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org




[GitHub] [camel-website] djencks commented on pull request #667: Resolves #666: (Do not merge yet) Main aggregate collector/page generation

2021-11-10 Thread GitBox


djencks commented on pull request #667:
URL: https://github.com/apache/camel-website/pull/667#issuecomment-965575820


   The camel-kafka-connector PRs need a little more attention.  The json files 
contain duplicate information: enum values are listed as json elements and also 
rendered into the description.  The util  description renderer uses the json 
elements to render a list of enum values.  Therefore I would like to remove the 
hardcoded rendering into the json description.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org




[GitHub] [camel-kafka-connector] oscerd commented on pull request #1286: Main collect

2021-11-10 Thread GitBox


oscerd commented on pull request #1286:
URL: 
https://github.com/apache/camel-kafka-connector/pull/1286#issuecomment-965569890


   The website build is currently broken. So I would first focus on fixing that.
   https://ci-builds.apache.org/job/Camel/job/Camel.website/job/main/
   
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org




[camel] branch main updated: Builds current otel context depending on the exchange's baggage state

2021-11-10 Thread acosentino
This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel.git


The following commit(s) were added to refs/heads/main by this push:
 new 3200bd9  Builds current otel context depending on the exchange's 
baggage state
3200bd9 is described below

commit 3200bd9c775a1aa203a37aea64f754a41e3b9409
Author: Andrew Fernandez 
AuthorDate: Tue Nov 9 14:38:52 2021 +

Builds current otel context depending on the exchange's baggage state
---
 .../java/org/apache/camel/opentelemetry/OpenTelemetryTracer.java   | 7 ++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git 
a/components/camel-opentelemetry/src/main/java/org/apache/camel/opentelemetry/OpenTelemetryTracer.java
 
b/components/camel-opentelemetry/src/main/java/org/apache/camel/opentelemetry/OpenTelemetryTracer.java
index f7aff62..d56073a 100644
--- 
a/components/camel-opentelemetry/src/main/java/org/apache/camel/opentelemetry/OpenTelemetryTracer.java
+++ 
b/components/camel-opentelemetry/src/main/java/org/apache/camel/opentelemetry/OpenTelemetryTracer.java
@@ -138,7 +138,12 @@ public class OpenTelemetryTracer extends 
org.apache.camel.tracing.Tracer {
 protected void inject(SpanAdapter span, InjectAdapter adapter) {
 OpenTelemetrySpanAdapter spanFromExchange = (OpenTelemetrySpanAdapter) 
span;
 Span otelSpan = spanFromExchange.getOpenTelemetrySpan();
-Context ctx = 
Context.current().with(otelSpan).with(spanFromExchange.getBaggage());
+Context ctx;
+if (spanFromExchange.getBaggage() != null) {
+ctx = 
Context.current().with(otelSpan).with(spanFromExchange.getBaggage());
+} else {
+ctx = Context.current().with(otelSpan);
+}
 
GlobalOpenTelemetry.get().getPropagators().getTextMapPropagator().inject(ctx, 
adapter, new OpenTelemetrySetter());
 }
 


[GitHub] [camel] oscerd commented on pull request #6409: Builds current otel context depending on the exchange's baggage state

2021-11-10 Thread GitBox


oscerd commented on pull request #6409:
URL: https://github.com/apache/camel/pull/6409#issuecomment-965567079


   Thanks!


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org




[GitHub] [camel] oscerd merged pull request #6409: Builds current otel context depending on the exchange's baggage state

2021-11-10 Thread GitBox


oscerd merged pull request #6409:
URL: https://github.com/apache/camel/pull/6409


   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org




[camel] branch main updated: CAMEL-17221 - Use Debug log level for Foreground Task

2021-11-10 Thread acosentino
This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel.git


The following commit(s) were added to refs/heads/main by this push:
 new 59edfdd  CAMEL-17221 - Use Debug log level for Foreground Task
59edfdd is described below

commit 59edfdd36d774942612e200ecb8220ee91e02714
Author: Andrea Cosentino 
AuthorDate: Wed Nov 10 18:20:10 2021 +0100

CAMEL-17221 - Use Debug log level for Foreground Task
---
 .../java/org/apache/camel/support/task/ForegroundTask.java   | 12 ++--
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git 
a/core/camel-support/src/main/java/org/apache/camel/support/task/ForegroundTask.java
 
b/core/camel-support/src/main/java/org/apache/camel/support/task/ForegroundTask.java
index d2ac9dc..d5f798f 100644
--- 
a/core/camel-support/src/main/java/org/apache/camel/support/task/ForegroundTask.java
+++ 
b/core/camel-support/src/main/java/org/apache/camel/support/task/ForegroundTask.java
@@ -75,7 +75,7 @@ public class ForegroundTask implements BlockingTask {
 
 while (budget.next()) {
 if (predicate.test(payload)) {
-LOG.info("Task {} is complete after {} iterations and it 
is ready to continue",
+LOG.debug("Task {} is complete after {} iterations and it 
is ready to continue",
 name, budget.iteration());
 completed = true;
 break;
@@ -86,7 +86,7 @@ public class ForegroundTask implements BlockingTask {
 }
 }
 } catch (InterruptedException e) {
-LOG.warn("Interrupted {} while waiting for the repeatable task to 
execute", name);
+LOG.warn("Interrupted {} while waiting for the repeatable task to 
finish", name);
 Thread.currentThread().interrupt();
 }
 
@@ -104,7 +104,7 @@ public class ForegroundTask implements BlockingTask {
 
 while (budget.next()) {
 if (supplier.getAsBoolean()) {
-LOG.info("Task {} is complete after {} iterations and it 
is ready to continue",
+LOG.debug("Task {} is complete after {} iterations and it 
is ready to continue",
 name, budget.iteration());
 completed = true;
 
@@ -116,7 +116,7 @@ public class ForegroundTask implements BlockingTask {
 }
 }
 } catch (InterruptedException e) {
-LOG.warn("Interrupted {} while waiting for the repeatable task to 
execute", name);
+LOG.warn("Interrupted {} while waiting for the repeatable task to 
finish", name);
 Thread.currentThread().interrupt();
 }
 
@@ -140,7 +140,7 @@ public class ForegroundTask implements BlockingTask {
 while (budget.next()) {
 T ret = supplier.get();
 if (predicate.test(ret)) {
-LOG.info("Task {} is complete after {} iterations and it 
is ready to continue",
+LOG.debug("Task {} is complete after {} iterations and it 
is ready to continue",
 name, budget.iteration());
 return Optional.ofNullable(ret);
 }
@@ -150,7 +150,7 @@ public class ForegroundTask implements BlockingTask {
 }
 }
 } catch (InterruptedException e) {
-LOG.warn("Interrupted {} while waiting for the repeatable task to 
execute", name);
+LOG.warn("Interrupted {} while waiting for the repeatable task to 
finish", name);
 Thread.currentThread().interrupt();
 }
 


[GitHub] [camel-website] djencks commented on pull request #667: Resolves #666: (Do not merge yet) Main aggregate collector/page generation

2021-11-10 Thread GitBox


djencks commented on pull request #667:
URL: https://github.com/apache/camel-website/pull/667#issuecomment-965564425


   Related changes:
   https://github.com/apache/camel/pull/6417
   https://github.com/apache/camel/pull/6418
   
   https://github.com/apache/camel-spring-boot/pull/405
   https://github.com/apache/camel-spring-boot/pull/406
   The following three PRs require attention due to:
   Direct modification of generated spring-boot.json: needs to be replaced by 
some version of 924b1d688123f0ea5052ca3b091dd3c9dfdc9759
   https://github.com/apache/camel-spring-boot/pull/407
   https://github.com/apache/camel-spring-boot/pull/408
   https://github.com/apache/camel-spring-boot/pull/409
   
   https://github.com/apache/camel-kafka-connector/pull/1286
   https://github.com/apache/camel-kafka-connector/pull/1287


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org




[GitHub] [camel-kafka-connector] djencks opened a new pull request #1287: Camel kafka connector 0.11.x collect

2021-11-10 Thread GitBox


djencks opened a new pull request #1287:
URL: https://github.com/apache/camel-kafka-connector/pull/1287


   See apache/camel-website#667
   
   Replaces hardcoded generation with aggregate collector and generation by 
Antora directly from json files.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org




[GitHub] [camel-kafka-connector] djencks opened a new pull request #1286: Main collect

2021-11-10 Thread GitBox


djencks opened a new pull request #1286:
URL: https://github.com/apache/camel-kafka-connector/pull/1286


   See apache/camel-website#667
   
   Replaces hardcoded generation with aggregate collector and generation by 
Antora directly from json files.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org




[GitHub] [camel-spring-boot] djencks opened a new pull request #409: Camel spring boot 3.7.x collect

2021-11-10 Thread GitBox


djencks opened a new pull request #409:
URL: https://github.com/apache/camel-spring-boot/pull/409


   See apache/camel-website#667
   
   Replaces copying with aggregate collector.
   Generates options in spring-boot.adoc.
   
   NOTE: includes Direct modification of generated spring-boot.json: needs to 
be replaced by some version of 924b1d6


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org




[GitHub] [camel-spring-boot] djencks opened a new pull request #408: Camel spring boot 3.11.x collect

2021-11-10 Thread GitBox


djencks opened a new pull request #408:
URL: https://github.com/apache/camel-spring-boot/pull/408


   See apache/camel-website#667
   
   Replaces copying with aggregate collector.
   Generates options in spring-boot.adoc.
   
   NOTE: includes Direct modification of generated spring-boot.json: needs to 
be replaced by some version of 924b1d6
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org




[GitHub] [camel-spring-boot] djencks opened a new pull request #407: Camel spring boot 3.12.x collect

2021-11-10 Thread GitBox


djencks opened a new pull request #407:
URL: https://github.com/apache/camel-spring-boot/pull/407


   See apache/camel-website#667
   
   Replaces copying with aggregate collector.
   Generates options in spring-boot.adoc.
   
   NOTE: includes Direct modification of generated spring-boot.json: needs to 
be replaced by some version of 924b1d688123f0ea5052ca3b091dd3c9dfdc9759


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org




[GitHub] [camel-spring-boot] djencks opened a new pull request #406: Camel spring boot 3.13.x collect

2021-11-10 Thread GitBox


djencks opened a new pull request #406:
URL: https://github.com/apache/camel-spring-boot/pull/406


   See apache/camel-website#667
   
   Replaces copying with aggregate collector.
   Generates options in spring-boot.adoc.
   
   (this branch is not yet used in the docs, but this should get it ready)


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org




[GitHub] [camel-spring-boot] djencks opened a new pull request #405: Main collect

2021-11-10 Thread GitBox


djencks opened a new pull request #405:
URL: https://github.com/apache/camel-spring-boot/pull/405


   See apache/camel-website#667
   
   Replaces copying with aggregate collector.
   Generates options in spring-boot.adoc.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org




[GitHub] [camel] djencks opened a new pull request #6418: With inline anchor name column can be non-'a'

2021-11-10 Thread GitBox


djencks opened a new pull request #6418:
URL: https://github.com/apache/camel/pull/6418


   See apache/camel-website#667


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org




[GitHub] [camel] djencks opened a new pull request #6417: With inline anchor name column can be non-'a'

2021-11-10 Thread GitBox


djencks opened a new pull request #6417:
URL: https://github.com/apache/camel/pull/6417


   See https://github.com/apache/camel-website/pull/667


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org




[GitHub] [camel-website] djencks opened a new pull request #667: Resolves #666: (Do not merge yet) Main aggregate collector/page generation

2021-11-10 Thread GitBox


djencks opened a new pull request #667:
URL: https://github.com/apache/camel-website/pull/667


See #666.
   Website changes to:
   - improve util
   - update Antora to 3.0.0-beta.1 and Antora extensions to latest
   - Use @djencks/aggregate-collector to avoid symlinks and copying in 
camel-spring-boot and camel-kafka-connector
   - Use @djencks/asciidoctor-antora-indexer indexPage to generate 
camel-kafka-connector generated pages.
   
   Subsidiary PRs will be listed below.
   The playbook will need to be updated once those PRs are merged.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org




[GitHub] [camel-website] djencks opened a new issue #666: Use aggregate-collector to avoid symlinks; generate pages from json files

2021-11-10 Thread GitBox


djencks opened a new issue #666:
URL: https://github.com/apache/camel-website/issues/666


   - Using @djencks/aggregate-collector we can avoid needing symlinks or 
copying: Antora can scan the project repos, find the relevant files, and map 
them into the Antora appropriate location so they are added to the content 
catalog.
   - Using @djencks/asciidoctor-antora-indexer indexPage Antora extension we 
can generate fully-generated pages directly from json files and a template.
   
   The initial set of PRs applies this to camel-spring-boot to avoid copying 
and to camel-kafka-connector to avoid page generation.
   There are many other projects this can be used with.
   At the moment the aggregate-collector can't eliminate all symlinks in main 
camel because the existing gulp file code scans the adoc sources for examples 
and symlinks only the code that is used. I think the aggregate-collector can be 
extended to do this scanning but that is for the future.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org




[camel-quarkus] branch main updated (7ede271 -> 81e9c0f)

2021-11-10 Thread jamesnetherton
This is an automated email from the ASF dual-hosted git repository.

jamesnetherton pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git.


from 7ede271  Fix #3276 to make sure all objects have been deleted after 
each test in AWS2 S3 (#3279)
 add 81e9c0f  Remove BOM reference to non existent 
camel-quarkus-xstream-common-deployment dependency

No new revisions were added by this update.

Summary of changes:
 poms/bom/pom.xml | 5 -
 1 file changed, 5 deletions(-)


[GitHub] [camel-quarkus] jamesnetherton merged pull request #3285: Remove BOM reference to non existent camel-quarkus-xstream-common-deployment dependency

2021-11-10 Thread GitBox


jamesnetherton merged pull request #3285:
URL: https://github.com/apache/camel-quarkus/pull/3285


   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org




[camel] branch regen_bot updated (48eb47e -> 33a7ad6)

2021-11-10 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch regen_bot
in repository https://gitbox.apache.org/repos/asf/camel.git.


 discard 48eb47e  Regen for commit c4b5791237bbf27af7b54bbd0d14b7c6944dff1f
 add 33a7ad6  [CAMEL-17176] Fix error in unit test

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (48eb47e)
\
 N -- N -- N   refs/heads/regen_bot (33a7ad6)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

No new revisions were added by this update.

Summary of changes:
 .../sql/stored/template/generated/SSPTParser.java  |  833 ++---
 .../template/generated/SSPTParserConstants.java|  110 +-
 .../template/generated/SSPTParserTokenManager.java | 1222 ++--
 .../jbpm/server/CamelKieServerExtensionTest.java   |2 +-
 4 files changed, 1094 insertions(+), 1073 deletions(-)


[GitHub] [camel] github-actions[bot] closed pull request #6416: Generated sources regen

2021-11-10 Thread GitBox


github-actions[bot] closed pull request #6416:
URL: https://github.com/apache/camel/pull/6416


   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org




[camel] branch regen_bot updated (59a91a4 -> 48eb47e)

2021-11-10 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch regen_bot
in repository https://gitbox.apache.org/repos/asf/camel.git.


from 59a91a4  CAMEL-17121: converted camel-smpp producer to the repeatable 
tasks
 add c4b5791  CAMEL-17175: camel-mllp option 'logPhi' with value 'false' 
does not work for exception logging
 add 48eb47e  Regen for commit c4b5791237bbf27af7b54bbd0d14b7c6944dff1f

No new revisions were added by this update.

Summary of changes:
 .../mllp/MllpAcknowledgementDeliveryException.java |   17 +-
 .../mllp/MllpAcknowledgementException.java |   25 +-
 .../MllpAcknowledgementGenerationException.java|   12 +-
 .../mllp/MllpAcknowledgementReceiveException.java  |   33 +-
 .../mllp/MllpAcknowledgementTimeoutException.java  |   34 +-
 ...lpApplicationErrorAcknowledgementException.java |9 +-
 ...pApplicationRejectAcknowledgementException.java |9 +-
 .../MllpCommitErrorAcknowledgementException.java   |9 +-
 .../MllpCommitRejectAcknowledgementException.java  |9 +-
 .../apache/camel/component/mllp/MllpException.java |   32 +-
 .../mllp/MllpInvalidAcknowledgementException.java  |9 +-
 .../mllp/MllpInvalidMessageException.java  |8 +-
 .../mllp/MllpNegativeAcknowledgementException.java |9 +-
 .../camel/component/mllp/MllpReceiveException.java |   24 +-
 .../component/mllp/MllpTcpClientProducer.java  |   45 +-
 .../component/mllp/MllpTcpServerConsumer.java  |   19 +-
 .../camel/component/mllp/MllpWriteException.java   |   16 +-
 .../camel/component/mllp/internal/Hl7Util.java |   11 +-
 .../component/mllp/internal/MllpSocketBuffer.java  |4 +-
 .../mllp/internal/TcpSocketConsumerRunnable.java   |7 +-
 .../mllp/Hl7AcknowledgementGenerator.java  |4 +-
 .../apache/camel/component/mllp/LogPhiTest.java|  125 ++
 .../MllpAcknowledgementDeliveryExceptionTest.java  |8 +-
 .../mllp/MllpAcknowledgementExceptionTest.java |   38 +-
 .../MllpAcknowledgementReceiveExceptionTest.java   |   16 +-
 .../MllpAcknowledgementTimeoutExceptionTest.java   |   23 +-
 ...plicationErrorAcknowledgementExceptionTest.java |7 +-
 ...licationRejectAcknowledgementExceptionTest.java |9 +-
 ...llpCommitErrorAcknowledgementExceptionTest.java |7 +-
 ...lpCommitRejectAcknowledgementExceptionTest.java |7 +-
 .../camel/component/mllp/MllpExceptionTest.java|   62 +-
 .../component/mllp/MllpExceptionTestSupport.java   |2 +
 .../MllpInvalidAcknowledgementExceptionTest.java   |5 +-
 .../mllp/MllpInvalidMessageExceptionTest.java  |4 +-
 .../MllpNegativeAcknowledgementExceptionTest.java  |   14 +-
 .../component/mllp/MllpReceiveExceptionTest.java   |   13 +-
 .../component/mllp/MllpWriteExceptionTest.java |9 +-
 ...rConsumerEndOfDataAndValidationTestSupport.java |3 +-
 .../camel/component/mllp/internal/Hl7UtilTest.java |5 +-
 .../sql/stored/template/generated/SSPTParser.java  |  833 +++--
 .../template/generated/SSPTParserConstants.java|  110 +-
 .../template/generated/SSPTParserTokenManager.java | 1222 ++--
 42 files changed, 1512 insertions(+), 1355 deletions(-)
 create mode 100644 
components/camel-mllp/src/test/java/org/apache/camel/component/mllp/LogPhiTest.java


[GitHub] [camel] github-actions[bot] opened a new pull request #6416: Generated sources regen

2021-11-10 Thread GitBox


github-actions[bot] opened a new pull request #6416:
URL: https://github.com/apache/camel/pull/6416


   Regen bot :robot: found some uncommited changes after running build on 
:camel: main.
   Please do not delete `regen_bot` branch after merge/rebase.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org




[GitHub] [camel-quarkus] ppalaga opened a new pull request #3286: Fixup 218bef4 Special fix for JMS extensions depending on

2021-11-10 Thread GitBox


ppalaga opened a new pull request #3286:
URL: https://github.com/apache/camel-quarkus/pull/3286


   quarkus-qpid-jms - Cannot run tests against alternative BOMs #3258
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org




[camel-k] branch main updated: Prepare for next development iteration 1.8.0-SNAPSHOT

2021-11-10 Thread nferraro
This is an automated email from the ASF dual-hosted git repository.

nferraro pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-k.git


The following commit(s) were added to refs/heads/main by this push:
 new 5721c50  Prepare for next development iteration 1.8.0-SNAPSHOT
5721c50 is described below

commit 5721c5020c966cb33c42b48b42a6d050ad204a16
Author: nicolaferraro 
AuthorDate: Wed Nov 10 15:27:04 2021 +0100

Prepare for next development iteration 1.8.0-SNAPSHOT
---
 config/manager/operator-deployment.yaml   | 2 +-
 config/manifests/bases/camel-k.clusterserviceversion.yaml | 4 ++--
 helm/camel-k/Chart.yaml   | 2 +-
 helm/camel-k/values.yaml  | 2 +-
 pkg/resources/resources.go| 2 +-
 pkg/util/defaults/defaults.go | 2 +-
 script/Makefile   | 2 +-
 7 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/config/manager/operator-deployment.yaml 
b/config/manager/operator-deployment.yaml
index d64c2fa..f3e6302 100644
--- a/config/manager/operator-deployment.yaml
+++ b/config/manager/operator-deployment.yaml
@@ -39,7 +39,7 @@ spec:
   serviceAccountName: camel-k-operator
   containers:
 - name: camel-k-operator
-  image: docker.io/apache/camel-k:1.7.0-SNAPSHOT
+  image: docker.io/apache/camel-k:1.8.0-SNAPSHOT
   imagePullPolicy: IfNotPresent
   command:
 - kamel
diff --git a/config/manifests/bases/camel-k.clusterserviceversion.yaml 
b/config/manifests/bases/camel-k.clusterserviceversion.yaml
index b14f98b..3e8dbc2 100644
--- a/config/manifests/bases/camel-k.clusterserviceversion.yaml
+++ b/config/manifests/bases/camel-k.clusterserviceversion.yaml
@@ -22,7 +22,7 @@ metadata:
 capabilities: Full Lifecycle
 categories: Integration & Delivery
 certified: "false"
-containerImage: docker.io/apache/camel-k:1.7.0-SNAPSHOT
+containerImage: docker.io/apache/camel-k:1.8.0-SNAPSHOT
 createdAt: 2021-05-03T07:48:00Z
 description: Apache Camel K is a lightweight integration platform, born on 
Kubernetes, with serverless superpowers.
 operators.operatorframework.io/builder: operator-sdk-v1.3.0
@@ -154,4 +154,4 @@ spec:
   selector:
 matchLabels:
   name: camel-k-operator
-  version: 1.7.0-snapshot
+  version: 1.8.0-snapshot
diff --git a/helm/camel-k/Chart.yaml b/helm/camel-k/Chart.yaml
index c7acd4c..f76955c 100644
--- a/helm/camel-k/Chart.yaml
+++ b/helm/camel-k/Chart.yaml
@@ -35,7 +35,7 @@ version: 0.8.0
 
 # This is the version number of the application being deployed. This version 
number should be
 # incremented each time you make changes to the application.
-appVersion: 1.7.0-SNAPSHOT
+appVersion: 1.8.0-SNAPSHOT
 
 icon: https://github.com/apache/camel/raw/main/docs/img/logo64-d.png
 home: https://camel.apache.org/camel-k/latest/
diff --git a/helm/camel-k/values.yaml b/helm/camel-k/values.yaml
index c14011a..3f62669 100644
--- a/helm/camel-k/values.yaml
+++ b/helm/camel-k/values.yaml
@@ -23,7 +23,7 @@ nameOverride: ""
 fullnameOverride: ""
 
 operator:
-  image: docker.io/apache/camel-k:1.7.0-SNAPSHOT
+  image: docker.io/apache/camel-k:1.8.0-SNAPSHOT
 
 platform:
   build:
diff --git a/pkg/resources/resources.go b/pkg/resources/resources.go
index a2cfa3d..9189dc6 100644
--- a/pkg/resources/resources.go
+++ b/pkg/resources/resources.go
@@ -172,7 +172,7 @@ var assets = func() http.FileSystem {
modTime:  time.Time{},
uncompressedSize: 2397,
 
-   compressedContent: 
[]byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xc4\x55\xc1\x72\xe2\x46\x10\xbd\xeb\x2b\x5e\xa1\xcb\x6e\x95\x01\x7b\x2f\xd9\x52\x4e\x8a\x8d\x63\x2a\x0e\x50\x88\x8d\x6b\x4f\xa9\x61\xd4\x48\x53\x1e\x4d\x2b\x33\x23\x58\xe5\xeb\x53\x23\x10\x06\xd6\x71\x72\x70\xd5\xce\x09\xa9\xbb\x5f\xbf\xd7\xfd\x34\xc4\x18\xbe\xdf\x89\x62\x3c\x2a\x49\xc6\x51\x0e\xcf\xf0\x25\x21\xad\x85\x2c\x09\x19\x6f\xfc\x4e\x58\xc2\x3d\x37\x26\x17\x5e\xb1\xc1\x87\x34\xbb\xff\x88\xc6\xe4\x64\xc1\x86\x
 [...]
+   compressedContent: 
[]byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xc4\x55\xc1\x72\xe2\x46\x10\xbd\xeb\x2b\x5e\xa1\xcb\x6e\x95\x01\x7b\x4f\x2e\xe5\xa4\xd8\x38\xa6\xe2\x00\x85\xd8\xb8\xf6\x94\x1a\x46\x8d\x34\xe5\xd1\xb4\x32\x33\x82\x55\xbe\x3e\x35\x02\x61\x60\x1d\x27\x07\x57\x65\x4e\x48\xdd\xfd\xfa\xbd\xee\xa7\x21\xc6\xf0\xe3\x4e\x14\xe3\x49\x49\x32\x8e\x72\x78\x86\x2f\x09\x69\x2d\x64\x49\xc8\x78\xe3\x77\xc2\x12\x1e\xb8\x31\xb9\xf0\x8a\x0d\x3e\xa5\xd9\xc3\x67\x34\x26\x27\x0b\x36\x04\x
 [...]
},
"/manager/operator-service-account.yaml": 
۰CompressedFileInfo{
name: "operator-service-account.yaml",
diff --git a/pkg/util/defaults/defaults.go b/pkg/util/defaults/defaults.go
index f9b26ba..ea96049 100644

[GitHub] [camel] luigidemasi commented on pull request #6396: CAMEL-17175: camel-mllp option 'logPhi' with value 'false' does not work for exception logging

2021-11-10 Thread GitBox


luigidemasi commented on pull request #6396:
URL: https://github.com/apache/camel/pull/6396#issuecomment-965236909


   > @luigidemasi can you please backport to 3.11.x too? Thanks.
   
   sure


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org




[GitHub] [camel-kafka-connector] oscerd commented on issue #1285: Custom kafkaconnetor class as CamelAws2s3SourceConnector

2021-11-10 Thread GitBox


oscerd commented on issue #1285:
URL: 
https://github.com/apache/camel-kafka-connector/issues/1285#issuecomment-965234800


   Ok, so you're still using the basic feature of the connector, this means 
you're still using the component. My suggestion for the moment is to maintain 
the package name and maybe you could provide some doc about what you were doing 
and how.
   
   Keep in mind that we are going to base the behavior of the connectors on 
kamelets from the next release. So something could change in your application 
if you update.
   
   cc @valdar 


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org




[GitHub] [camel-kafka-connector] ruchirvaninasdaq edited a comment on issue #1285: Custom kafkaconnetor class as CamelAws2s3SourceConnector

2021-11-10 Thread GitBox


ruchirvaninasdaq edited a comment on issue #1285:
URL: 
https://github.com/apache/camel-kafka-connector/issues/1285#issuecomment-965227733


   What would be your recommended approach for customizing the s3 connector 
module? (Like i need to add custom seralizer, I need to start some monitoring 
process before starting the connector, I need to update metrics on every 
messages processed and on initializing the connector need to send message to 
some other topic once.)


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org




[GitHub] [camel-kafka-connector] ruchirvaninasdaq commented on issue #1285: Custom kafkaconnetor class as CamelAws2s3SourceConnector

2021-11-10 Thread GitBox


ruchirvaninasdaq commented on issue #1285:
URL: 
https://github.com/apache/camel-kafka-connector/issues/1285#issuecomment-965227733


   What would be your recommended approach for customizing the s3 connector 
module? (Like i need to add custom seralizer, I need to start some monitoring 
process before starting the connector, I need to update metrics on every 
messages processed)


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org




[GitHub] [camel-kafka-connector] oscerd commented on issue #1285: Custom kafkaconnetor class as CamelAws2s3SourceConnector

2021-11-10 Thread GitBox


oscerd commented on issue #1285:
URL: 
https://github.com/apache/camel-kafka-connector/issues/1285#issuecomment-965223901


   > Does those autogenerated properties and resources (in generated packages) 
make any difference?
   
   No, they are related to the underline camel component. I don't know what is 
in your extended class, but I suppose you're not using the camel component any 
more. Probably.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org




[GitHub] [camel-kafka-connector] ruchirvaninasdaq commented on issue #1285: Custom kafkaconnetor class as CamelAws2s3SourceConnector

2021-11-10 Thread GitBox


ruchirvaninasdaq commented on issue #1285:
URL: 
https://github.com/apache/camel-kafka-connector/issues/1285#issuecomment-965221766


   Does those autogenerated properties and resources  (in generated packages) 
make any difference? 


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org




[GitHub] [camel-kafka-connector] oscerd commented on issue #1285: Custom kafkaconnetor class as CamelAws2s3SourceConnector

2021-11-10 Thread GitBox


oscerd commented on issue #1285:
URL: 
https://github.com/apache/camel-kafka-connector/issues/1285#issuecomment-965222493


   > So. if I dont change the package and add my custom code it works. Is there 
anything special needs to be pulled from the build plan?
   
   No.
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org




[GitHub] [camel-kafka-connector] oscerd commented on issue #1285: Custom kafkaconnetor class as CamelAws2s3SourceConnector

2021-11-10 Thread GitBox


oscerd commented on issue #1285:
URL: 
https://github.com/apache/camel-kafka-connector/issues/1285#issuecomment-965221410


   > Core is added in common package.
   
   Yes, I meant something in the core checking for a specific package like 
org.apache.camel...


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org




[GitHub] [camel-kafka-connector] ruchirvaninasdaq commented on issue #1285: Custom kafkaconnetor class as CamelAws2s3SourceConnector

2021-11-10 Thread GitBox


ruchirvaninasdaq commented on issue #1285:
URL: 
https://github.com/apache/camel-kafka-connector/issues/1285#issuecomment-965218562


   So. if I dont change the package and add my custom code it works. Is there 
anything special needs to be pulled from the build plan? 


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org




[GitHub] [camel-kafka-connector] ruchirvaninasdaq commented on issue #1285: Custom kafkaconnetor class as CamelAws2s3SourceConnector

2021-11-10 Thread GitBox


ruchirvaninasdaq commented on issue #1285:
URL: 
https://github.com/apache/camel-kafka-connector/issues/1285#issuecomment-965216872


   Core is added in common package. 


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org




[GitHub] [camel-kafka-connector] ruchirvaninasdaq commented on issue #1285: Custom kafkaconnetor class as CamelAws2s3SourceConnector

2021-11-10 Thread GitBox


ruchirvaninasdaq commented on issue #1285:
URL: 
https://github.com/apache/camel-kafka-connector/issues/1285#issuecomment-965215343


   So I have updated the Camel sourceconnector here to my custom class which is 
as follows.
   
   ```public class NcdsCamelAws2s3SourceConnector extends CamelSourceConnector {
   
   private static final Logger LOG = 
LoggerFactory.getLogger(NcdsCamelAws2s3SourceConnector.class);
   @Override
   public ConfigDef config() {
   return CamelAws2s3SourceConnectorConfig.conf();
   }
   @Override
   public Class taskClass() {
   return CamelAws2s3SourceTask.class;
   }
   // Some customcode 
   }```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org




[GitHub] [camel-kafka-connector] oscerd commented on issue #1285: Custom kafkaconnetor class as CamelAws2s3SourceConnector

2021-11-10 Thread GitBox


oscerd commented on issue #1285:
URL: 
https://github.com/apache/camel-kafka-connector/issues/1285#issuecomment-965215937


   Not sure about this particular use cases. Probably it's something in the 
core.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org




[GitHub] [camel-kafka-connector] oscerd edited a comment on issue #1285: Custom kafkaconnetor class as CamelAws2s3SourceConnector

2021-11-10 Thread GitBox


oscerd edited a comment on issue #1285:
URL: 
https://github.com/apache/camel-kafka-connector/issues/1285#issuecomment-965215937


   Not sure about this particular usecase. Probably it's something in the core.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org




[GitHub] [camel-kafka-connector] ruchirvaninasdaq edited a comment on issue #1285: Custom kafkaconnetor class as CamelAws2s3SourceConnector

2021-11-10 Thread GitBox


ruchirvaninasdaq edited a comment on issue #1285:
URL: 
https://github.com/apache/camel-kafka-connector/issues/1285#issuecomment-965215343


   So I have updated the Camel sourceconnector here to my custom class which is 
as follows.
   
   ```
   public class NcdsCamelAws2s3SourceConnector extends CamelSourceConnector {
   
   private static final Logger LOG = 
LoggerFactory.getLogger(NcdsCamelAws2s3SourceConnector.class);
   @Override
   public ConfigDef config() {
   return CamelAws2s3SourceConnectorConfig.conf();
   }
   @Override
   public Class taskClass() {
   return CamelAws2s3SourceTask.class;
   }
   // Some customcode 
   }```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org




[GitHub] [camel-kafka-connector] ruchirvaninasdaq commented on issue #1285: Custom kafkaconnetor class as CamelAws2s3SourceConnector

2021-11-10 Thread GitBox


ruchirvaninasdaq commented on issue #1285:
URL: 
https://github.com/apache/camel-kafka-connector/issues/1285#issuecomment-965210662


   ![Screen Shot 2021-11-10 at 8 58 23 
AM](https://user-images.githubusercontent.com/32844383/141126691-39f04435-4628-46ff-861b-8f4b1619c1af.png)
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org




[GitHub] [camel] oscerd commented on pull request #6401: [CAMEL-17176] Fix error in unit test

2021-11-10 Thread GitBox


oscerd commented on pull request #6401:
URL: https://github.com/apache/camel/pull/6401#issuecomment-965208743


   Thanks


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org




  1   2   3   >