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

2020-06-09 Thread acosentino
This is an automated email from the ASF dual-hosted git repository.

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


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

commit 050adbcda20a079fc3341b5e0a71e60fdc1d5b63
Author: github-actions[bot] 
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Wed Jun 10 00:54:34 2020 +

[create-pull-request] automated change
---
 tooling/camel-spring-boot-dependencies/pom.xml | 10 +-
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/tooling/camel-spring-boot-dependencies/pom.xml 
b/tooling/camel-spring-boot-dependencies/pom.xml
index c212751..969bc77 100644
--- a/tooling/camel-spring-boot-dependencies/pom.xml
+++ b/tooling/camel-spring-boot-dependencies/pom.xml
@@ -83,7 +83,7 @@
   
 com.dropbox.core
 dropbox-core-sdk
-3.1.3
+3.1.4
   
   
 com.github.dozermapper
@@ -4057,22 +4057,22 @@
   
 org.apache.pdfbox
 fontbox
-2.0.19
+2.0.20
   
   
 org.apache.pdfbox
 pdfbox
-2.0.19
+2.0.20
   
   
 org.apache.pdfbox
 pdfbox-debugger
-2.0.19
+2.0.20
   
   
 org.apache.pdfbox
 pdfbox-tools
-2.0.19
+2.0.20
   
   
 org.apache.pulsar



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

2020-06-09 Thread GitBox


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


   



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.

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




[camel-quarkus] branch camel-master updated: health example - requires Camel 3.4 (#1321)

2020-06-09 Thread davsclaus
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/camel-master by this push:
 new 0d5c790  health example - requires Camel 3.4 (#1321)
0d5c790 is described below

commit 0d5c790af209bee5353d1f266b3b7f5d72ebd19b
Author: Claus Ibsen 
AuthorDate: Wed Jun 10 07:06:15 2020 +0200

health example - requires Camel 3.4 (#1321)

* health example - requires Camel 3.4

* Upgrade microprofile integration test to latest Camel 3.4 SNAPSHOT

* Upgrade observability example test to latest Camel 3.4 SNAPSHOT
---
 examples/health/README.adoc|  78 
 examples/health/pom.xml| 103 +
 .../java/org/acme/health/MonkeyHealthCheck.java|  62 +
 .../main/java/org/acme/health/MyRouteBuilder.java  |  42 +
 .../src/main/resources/application.properties  |  77 +++
 .../org/acme/observability/ObservabilityTest.java  |   3 +-
 examples/pom.xml   |   1 +
 .../it/health/MicroProfileHealthTest.java  |   9 +-
 8 files changed, 370 insertions(+), 5 deletions(-)

diff --git a/examples/health/README.adoc b/examples/health/README.adoc
new file mode 100644
index 000..964c972
--- /dev/null
+++ b/examples/health/README.adoc
@@ -0,0 +1,78 @@
+== Camel Quarkus Example Health
+
+This example shows how to use Camel health-check with Quarkus.
+The example shows how you can build custom health-checks and have
+them automatic discovered by Camel and used as parts of its health-check 
system.
+
+TIP: Check the 
https://camel.apache.org/camel-quarkus/latest/first-steps.html[Camel Quarkus 
User guide] for prerequisites
+and other general information.
+
+The example has two routes, a timer that calls a bean that flips a boolean that
+causes the custom health check to be in either UP or DOWN state.
+
+The 2nd route is on purpose made to fail on startup by configuring netty to an 
unknown host.
+Camel supervising route controller will attempt to restart the route up till 
10 times before exhausting.
+
+The routes health check will therefore report this route as DOWN until its 
exhausted
+where the states are changed to UNKNOWN.
+
+The details can be seen at runtime from the calling the following url from a 
web browser: http://localhost:8080/health
+
+=== Start in the Development mode
+
+[source,shell]
+
+$ mvn clean compile quarkus:dev
+
+
+The above command compiles the project, starts the application and lets the 
Quarkus tooling watch for changes in your
+workspace. Any modifications in your project will automatically take effect in 
the running application.
+
+TIP: Please refer to the Development mode section of
+https://camel.apache.org/camel-quarkus/latest/first-steps.html#_development_mode[Camel
 Quarkus User guide] for more details.
+
+You can check the health check status by calling the following url from a web 
browser: http://localhost:8080/health
+
+=== Package and run the application
+
+Once you are done with developing you may want to package and run the 
application.
+
+TIP: Find more details about the JVM mode and Native mode in the Package and 
run section of
+https://camel.apache.org/camel-quarkus/latest/first-steps.html#_package_and_run_the_application[Camel
 Quarkus User guide]
+
+=== JVM mode
+
+[source,shell]
+
+$ mvn clean package
+$ java -jar target/*-runner.jar
+...
+[io.quarkus] (main) Quarkus 1.3.2 started in 1.163s. Listening on: 
http://[::]:8080
+
+
+=== Native mode
+
+IMPORTANT: Native mode requires having GraalVM and other tools installed. 
Please check the Prerequisites section
+of 
https://camel.apache.org/camel-quarkus/latest/first-steps.html#_prerequisites[Camel
 Quarkus User guide].
+
+To prepare a native executable using GraalVM, run the following command:
+
+[source,shell]
+
+$ mvn clean package -Pnative
+$ ./target/*-runner
+...
+[io.quarkus] (main) Quarkus 1.3.2 started in 0.013s. Listening on: 
http://[::]:8080
+...
+
+
+=== Help and contributions
+
+If you hit any problem using Camel or have some feedback, then please
+https://camel.apache.org/support.html[let us know].
+
+We also love contributors, so
+https://camel.apache.org/contributing.html[get involved] :-)
+
+The Camel riders!
+
diff --git a/examples/health/pom.xml b/examples/health/pom.xml
new file mode 100644
index 000..52be628
--- /dev/null
+++ b/examples/health/pom.xml
@@ -0,0 +1,103 @@
+
+
+http://maven.apache.org/POM/4.0.0; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance; 
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/xsd/maven-4.0.0.xsd;>
+
+org.apache.camel.quarkus
+camel-quarkus-build-parent
+1.1.0-SNAPSHOT
+../../poms/build-parent/pom.xml
+
+
+4.0.0
+
+

[GitHub] [camel-quarkus] davsclaus merged pull request #1321: health example - requires Camel 3.4

2020-06-09 Thread GitBox


davsclaus merged pull request #1321:
URL: https://github.com/apache/camel-quarkus/pull/1321


   



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.

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




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

2020-06-09 Thread GitBox


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


   The 
[quarkus-master](https://github.com/apache/camel-quarkus/tree/quarkus-master) 
branch build is still failing:
   
   * Build ID: 130481430-48-f0ffc89b-aebe-4506-9b5b-56ed7a2eeeb0
   * Camel Quarkus Commit: 5d15766274006f41ce7d47039e0117f62a697ca0
   
   * Quarkus Master Commit: ef7a4edffbb498734375a94f569ff74760ea2a09
   * Link to build: 
https://github.com/apache/camel-quarkus/actions/runs/130481430



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.

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




[GitHub] [camel-kafka-connector] saranyaeu2987 edited a comment on issue #267: Question: How to provide aws role:arn value to authenticate S3

2020-06-09 Thread GitBox


saranyaeu2987 edited a comment on issue #267:
URL: 
https://github.com/apache/camel-kafka-connector/issues/267#issuecomment-641641685


   @valdar 
   Its is an IAM Role arn which has full access S3 bucket policy
   `arn:aws:iam::***:role/stg-abc-s3-ae4c7ad7.`
   
   Can I give IAM role arn in front of bucket name ? If so, will the sink url 
be something like this
   `camel.sink.url: 
aws-s3://arn:aws:iam::***:role/stg-abc-s3-ae4c7ad7/testse1232?keyName=s3-connect/${date:now:MMdd-HHmmssSSS}`
   
   Can you please provide me an example ?



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.

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




[GitHub] [camel-kafka-connector] saranyaeu2987 edited a comment on issue #267: Question: How to provide aws role:arn value to authenticate S3

2020-06-09 Thread GitBox


saranyaeu2987 edited a comment on issue #267:
URL: 
https://github.com/apache/camel-kafka-connector/issues/267#issuecomment-641641685


   @valdar 
   Its is an IAM Role arn which has full access S3 bucket policy
   `arn:aws:iam::***:role/stg-abc-s3-ae4c7ad7.`
   
   Can I give IAM role arn in front of bucket name ? If so, will the sink url 
be something like this
   `camel.sink.url: 
aws-s3://arn:aws:iam::***:role/stg-abc-s3-ae4c7ad7/testse1232?keyName=s3-connect/${date:now:MMdd-HHmmssSSS}`



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.

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




[GitHub] [camel-kafka-connector] saranyaeu2987 edited a comment on issue #267: Question: How to provide aws role:arn value to authenticate S3

2020-06-09 Thread GitBox


saranyaeu2987 edited a comment on issue #267:
URL: 
https://github.com/apache/camel-kafka-connector/issues/267#issuecomment-641641685


   @valdar 
   Its is an IAM Role arn which has full access S3 bucket policy
   `arn:aws:iam::***:role/stg-abc-s3-ae4c7ad7.`
   
   Can I give IAM arn in front of bucket name ?
   If so, will the sink url be something like this
   
   `camel.sink.url: 
aws-s3://arn:aws:iam::***:role/stg-abc-s3-ae4c7ad7/testse1232?keyName=s3-connect/${date:now:MMdd-HHmmssSSS}`



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.

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 #85: [Github Actions] Periodic Sync Camel Spring Boot Master Branch

2020-06-09 Thread GitBox


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


   Periodic Sync of Camel Spring Boot Master Branch with main Camel Master.
   see 
https://github.com/apache/camel-spring-boot/blob/master/.github/workflows/automatic-sync-master.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.

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




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

2020-06-09 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 bb628f9  [create-pull-request] automated change

No new revisions were added by this update.



[GitHub] [camel-kafka-connector] saranyaeu2987 edited a comment on issue #267: Question: How to provide aws role:arn value to authenticate S3

2020-06-09 Thread GitBox


saranyaeu2987 edited a comment on issue #267:
URL: 
https://github.com/apache/camel-kafka-connector/issues/267#issuecomment-641641685


   @valdar 
   Its is an IAM Role arn which has full access S3 bucket policy
   arn:aws:iam::***:role/stg-abc-s3-ae4c7ad7.
   
   Can I give IAM arn in front of bucket name ?



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.

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




[GitHub] [camel-kafka-connector] saranyaeu2987 edited a comment on issue #267: Question: How to provide aws role:arn value to authenticate S3

2020-06-09 Thread GitBox


saranyaeu2987 edited a comment on issue #267:
URL: 
https://github.com/apache/camel-kafka-connector/issues/267#issuecomment-641641685


   @valdar 
   Its is an IAM Role arn which has full access to S3 bucket policy
   arn:aws:iam::***:role/stg-abc-s3-ae4c7ad7.
   
   Can I give IAM arn in front of bucket name ?



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.

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




[GitHub] [camel-kafka-connector] saranyaeu2987 commented on issue #267: Question: How to provide aws role:arn value to authenticate S3

2020-06-09 Thread GitBox


saranyaeu2987 commented on issue #267:
URL: 
https://github.com/apache/camel-kafka-connector/issues/267#issuecomment-641641685


   @valdar 
   Its is an IAM role arn which has full access to S3 bucket policy
   arn:aws:iam::***:role/stg-abc-s3-ae4c7ad7.
   
   Can I give IAM arn in front of bucket name ?



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.

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




[GitHub] [camel-kafka-connector] valdar edited a comment on issue #267: Question: How to provide aws role:arn value to authenticate S3

2020-06-09 Thread GitBox


valdar edited a comment on issue #267:
URL: 
https://github.com/apache/camel-kafka-connector/issues/267#issuecomment-641630422


   If it is the bucket s3 arn I think you can place it where `testse1232` is in 
the example config you provided.



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.

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




[GitHub] [camel-kafka-connector] valdar commented on issue #267: Question: How to provide aws role:arn value to authenticate S3

2020-06-09 Thread GitBox


valdar commented on issue #267:
URL: 
https://github.com/apache/camel-kafka-connector/issues/267#issuecomment-641630422


   If is the bucket s3 arn I think you can place it where `testse1232` is in 
the example config you provided.



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.

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




[GitHub] [camel-kafka-connector] saranyaeu2987 opened a new issue #267: Question: How to provide aws role:arn value to authenticate S3

2020-06-09 Thread GitBox


saranyaeu2987 opened a new issue #267:
URL: https://github.com/apache/camel-kafka-connector/issues/267


   Hi, 
   I am using strimzi kafka connect to push data into S3 using 
camel-s3-sink-connector.
   I wanted to use IAM role authentication instead of access key and secret.
   
   How should I need to provide AWS role:arn in my yaml file when 
**camel.component.aws-s3.useIAMCredentials: true**??
   
   
   Sample deployment file (reference: 
https://developers.redhat.com/blog/2020/02/14/using-secrets-in-apache-kafka-connect-configuration/)
   ```
   apiVersion: kafka.strimzi.io/v1alpha1
   kind: KafkaConnector
   metadata:
 name: s3-sink-connector
 labels:
   strimzi.io/cluster: my-connect-cluster
   spec:
 class: org.apache.camel.kafkaconnector.CamelSinkConnector
 tasksMax: 1
 config:
   key.converter: org.apache.kafka.connect.storage.StringConverter
   value.converter: org.apache.kafka.connect.storage.StringConverter
   topics: abc_abc
   camel.sink.url: 
aws-s3://testse1232?keyName=s3-connect/${date:now:MMdd-HHmmssSSS}
   camel.component.aws-s3.configuration.autocloseBody: false
   #camel.component.aws-s3.accessKey: 
${file:/opt/kafka/external-configuration/aws-credentials/aws-credentials.properties:aws_access_key_id}
   #camel.component.aws-s3.secretKey: 
${file:/opt/kafka/external-configuration/aws-credentials/aws-credentials.properties:aws_secret_access_key}
   camel.component.aws-s3.useIAMCredentials: true
   ```



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.

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




[GitHub] [camel-k] ipolyzos commented on issue #1512: Update the kamel homebrew formula to v1.0.0

2020-06-09 Thread GitBox


ipolyzos commented on issue #1512:
URL: https://github.com/apache/camel-k/issues/1512#issuecomment-641613011


   A new PR  has created in the 
[homebrew-core](https://github.com/Homebrew/homebrew-core/) repository i.e 
[#56021](https://github.com/Homebrew/homebrew-core/pull/56021)
   



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.

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




[GitHub] [camel-k] ipolyzos opened a new issue #1512: Update the kamel homebrew formula to v1.0.0

2020-06-09 Thread GitBox


ipolyzos opened a new issue #1512:
URL: https://github.com/apache/camel-k/issues/1512


   Following the release of v1.0.0 (#1498) the homebrew formula needs to be 
updated.



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.

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




[camel] branch master updated: Fix doc xref

2020-06-09 Thread gnodet
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/master by this push:
 new c6756f9  Fix doc xref
c6756f9 is described below

commit c6756f998b252df6005410c33355fb12b2313b5a
Author: Guillaume Nodet 
AuthorDate: Wed Jun 10 00:06:58 2020 +0200

Fix doc xref
---
 docs/user-manual/modules/faq/pages/how-do-i-configure-endpoints.adoc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/docs/user-manual/modules/faq/pages/how-do-i-configure-endpoints.adoc 
b/docs/user-manual/modules/faq/pages/how-do-i-configure-endpoints.adoc
index 63afc21..d01cdb2 100644
--- a/docs/user-manual/modules/faq/pages/how-do-i-configure-endpoints.adoc
+++ b/docs/user-manual/modules/faq/pages/how-do-i-configure-endpoints.adoc
@@ -164,7 +164,7 @@ file://inbox?sorter=#class:com.foo.MySpecialSorter(10, 
'Hello world', true)
 === Referring beans by type from Endpoint URIs
 
 When configuring endpoints using URI syntax you can now refer to bean by its 
type which
-are used to lookup the bean by the given type from the 
xref:pages::registry.adoc[Registry].
+are used to lookup the bean by the given type from the 
xref:ROOT:registry.adoc[Registry].
 If there is one bean found in the registry of the given type, then that bean 
instance will be used;
 otherwise an exception is thrown.
 



[GitHub] [camel] Nayananga commented on a change in pull request #3897: CAMEL-13934 camel-minio - Component to store/load files from blob store

2020-06-09 Thread GitBox


Nayananga commented on a change in pull request #3897:
URL: https://github.com/apache/camel/pull/3897#discussion_r437673851



##
File path: 
components/camel-minio/src/main/java/org/apache/camel/MinIOConsumer.java
##
@@ -0,0 +1,77 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *  http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package org.apache.camel;
+
+import org.apache.camel.Exchange;
+import org.apache.camel.Processor;
+import org.apache.camel.RuntimeCamelException;
+import org.apache.camel.support.DefaultConsumer;
+
+import java.util.concurrent.ExecutorService;
+
+public class MinIOConsumer extends DefaultConsumer {
+private final MinIOEndpoint endpoint;
+private final EventBusHelper eventBusHelper;
+
+private ExecutorService executorService;
+
+public MinIOConsumer(MinIOEndpoint endpoint, Processor processor) {
+super(endpoint, processor);
+this.endpoint = endpoint;
+eventBusHelper = EventBusHelper.getInstance();

Review comment:
   Hi thank you for the suggestion, and I'll remove this for sure. But I'll 
keep it for a while for some random hello world kind tests while on the go. :)





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.

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




[camel-website] branch master updated: Remove book that was not published

2020-06-09 Thread davsclaus
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/master by this push:
 new b74f8f2  Remove book that was not published
b74f8f2 is described below

commit b74f8f204951cb1a240cf88f6a48662392d21330
Author: Claus Ibsen 
AuthorDate: Tue Jun 9 21:39:43 2020 +0200

Remove book that was not published
---
 content/community/books.md | 9 -
 1 file changed, 9 deletions(-)

diff --git a/content/community/books.md b/content/community/books.md
index 149e168..c0e3321 100644
--- a/content/community/books.md
+++ b/content/community/books.md
@@ -9,7 +9,6 @@ This page lists the known books about Apache Camel. If you 
happen to know a book
 *   [Apache Camel Developer's 
Cookbook](http://www.packtpub.com/apache-camel-developers-cookbook/book)
 *   [Camel Design Patterns](https://leanpub.com/camel-design-patterns)
 *   [Mastering Apache 
Camel](https://www.packtpub.com/application-development/mastering-apache-camel)
-*   [Apache Camel 
Essentials](https://www.packtpub.com/application-development/apache-camel-essentials)
 *   [Instant Apache Camel Message 
Routing](http://www.packtpub.com/apache-camel-message-routing/book)
 *   [Instant Apache Camel Messaging 
System](http://www.packtpub.com/apache-camel-messaging-system/book)
 *   [Enterprise Integration 
Patterns](http://www.enterpriseintegrationpatterns.com/)
@@ -62,14 +61,6 @@ This book will provide you with the skills you need to 
efficiently create routes
 
 After briefly introducing the key features and core concepts of Camel, the 
book will take you through all the important features and components, starting 
with routing and processors. You will learn how to use beans in Camel routes, 
covering everything from supported registries and annotations, to the creation 
of an OSGi bundle and writing route definitions with Blueprint DSL. Leverage 
the Enterprise Integration Patterns (EIPs) supported by Camel and implement 
them in your routes. You wil [...]
 
-### Apache Camel Essentials
-
-[Apache Camel 
Essentials](https://www.packtpub.com/application-development/apache-camel-essentials)
 by Prajod Surendran V, Gnanaguru Sattanathan, Naveen Raj. Published by [Packt 
publishing](http://www.packtpub.com/) in August 2016.
-
-![Apache Camel Essentials book cover](/img/books/camel_essentials.jpg)
-
-This book offers you a small learning curve to get the most out of enterprise 
Camel integrations. At the beginning of the book, you will learn about the 
installation and setup of Apache Camel and discover more about Camel concepts 
such as the development environment, routing, deployment strategies, and 
dependencies. After that, you will learn how to configure Camel endpoints using 
DSL and Spring XML, and also learn how to use Camel for web service 
integrations. Later on in the book, you  [...]
-
 ### Instant Apache Camel Message Routing
 
 [Instant Apache Camel Message 
Routing](http://www.packtpub.com/apache-camel-message-routing/book) by [Bilgin 
Ibryam](http://ofbizian.com/). Published by [Packt 
publishing](http://www.packtpub.com/) in August 2013.



[GitHub] [camel] Nayananga commented on a change in pull request #3897: CAMEL-13934 camel-minio - Component to store/load files from blob store

2020-06-09 Thread GitBox


Nayananga commented on a change in pull request #3897:
URL: https://github.com/apache/camel/pull/3897#discussion_r437672436



##
File path: 
components/camel-minio/src/main/java/org/apache/camel/EventBusHelper.java
##
@@ -0,0 +1,61 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *  http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package org.apache.camel;
+
+import java.util.Set;
+import java.util.concurrent.ConcurrentHashMap;
+import java.util.function.Consumer;
+
+/**
+ * Used for demonstrations purpose to simulate some external system event 
bus/broker, where messages are sent to, and
+ * this component can consume from.
+ */
+public class EventBusHelper {

Review comment:
   Hi thank you for the suggestion, and I'll remove this for sure. But I'll 
keep it for a while for some random hello world kind tests while on the go. :)





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.

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




[camel] branch master updated: Update docs

2020-06-09 Thread davsclaus
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/master by this push:
 new 88df6b9  Update docs
88df6b9 is described below

commit 88df6b954817a04bbe59ee4d8a49f41ebcba82a0
Author: Claus Ibsen 
AuthorDate: Tue Jun 9 21:04:35 2020 +0200

Update docs
---
 .../faq/pages/how-do-i-configure-endpoints.adoc| 28 --
 1 file changed, 21 insertions(+), 7 deletions(-)

diff --git 
a/docs/user-manual/modules/faq/pages/how-do-i-configure-endpoints.adoc 
b/docs/user-manual/modules/faq/pages/how-do-i-configure-endpoints.adoc
index 0063600..63afc21 100644
--- a/docs/user-manual/modules/faq/pages/how-do-i-configure-endpoints.adoc
+++ b/docs/user-manual/modules/faq/pages/how-do-i-configure-endpoints.adoc
@@ -138,27 +138,41 @@ Registry.
 
 Camel also supports to refer to beans by their class type.
 
-[[HowdoIconfigureendpoints-ReferringbeansbytypefromEndpointURIs]]
-=== Referring beans by type from Endpoint URIs
+[[HowdoIconfigureendpoints-ReferringbeansbyclassfromEndpointURIs]]
+=== Referring beans by class from Endpoint URIs
 
-When configuring endpoints using URI syntax you can now refer to bean by type 
(class name)
-using the `#type:fullyQualifiedName` notation.
+When configuring endpoints using URI syntax you can now refer to bean by its 
class name
+using the `#class:fullyQualifiedName` notation.
 
-If the parameter value starts with a `#type:` sign then Camel will load the
+If the parameter value starts with a `#class:` sign then Camel will load the
 class with the given name, and create an instanace of the bean using its 
_no-arg_ constructor:
 
 [source]
 
-file://inbox?sorter=#type:com.foo.MySpecialSorter
+file://inbox?sorter=#class:com.foo.MySpecialSorter
 
 
-If you need to provide parameters to the constructor, then you should use 
`#class:` notation instead:
+If you need to provide parameters to the constructor, then this is also 
possible
+(limited to numbers, boolean, literal, and null values)
 
 [source]
 
 file://inbox?sorter=#class:com.foo.MySpecialSorter(10, 'Hello world', true)
 
 
+[[HowdoIconfigureendpoints-ReferringbeansbytypefromEndpointURIs]]
+=== Referring beans by type from Endpoint URIs
+
+When configuring endpoints using URI syntax you can now refer to bean by its 
type which
+are used to lookup the bean by the given type from the 
xref:pages::registry.adoc[Registry].
+If there is one bean found in the registry of the given type, then that bean 
instance will be used;
+otherwise an exception is thrown.
+
+[source]
+
+file://inbox?idempontentRepository=#type:org.apache.camel.spi.IdempotentRepository
+
+
 
[[HowdoIconfigureendpoints-Configuringparametervaluesusingrawvalues,egsuchaspasswords]]
 === Configuring parameter values using raw values, eg such as passwords
 



[camel-quarkus] branch health-example updated (326f5ac -> 5ffd78a)

2020-06-09 Thread davsclaus
This is an automated email from the ASF dual-hosted git repository.

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


from 326f5ac  Upgrade microprofile integration test to latest Camel 3.4 
SNAPSHOT
 add 5ffd78a  Upgrade observability example test to latest Camel 3.4 
SNAPSHOT

No new revisions were added by this update.

Summary of changes:
 .../src/test/java/org/acme/observability/ObservabilityTest.java| 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)



[camel-quarkus] branch master updated: Added couchdb consumer support in native mode #1022

2020-06-09 Thread aldettinger
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/master by this push:
 new ef7a4ed  Added couchdb consumer support in native mode #1022
ef7a4ed is described below

commit ef7a4edffbb498734375a94f569ff74760ea2a09
Author: aldettinger 
AuthorDate: Mon Jun 8 19:17:52 2020 +0200

Added couchdb consumer support in native mode #1022
---
 .../couchdb/deployment/CouchdbProcessor.java   |  9 +
 integration-tests/couchdb/pom.xml  |  5 +++
 .../quarkus/component/couchdb/it/CouchDbRoute.java | 41 ++
 .../component/couchdb/it/CouchdbResource.java  | 27 +++---
 .../component/couchdb/it/CouchdbTestDocument.java  | 16 +
 .../quarkus/component/couchdb/it/CouchdbTest.java  | 29 +++
 6 files changed, 122 insertions(+), 5 deletions(-)

diff --git 
a/extensions/couchdb/deployment/src/main/java/org/apache/camel/quarkus/component/couchdb/deployment/CouchdbProcessor.java
 
b/extensions/couchdb/deployment/src/main/java/org/apache/camel/quarkus/component/couchdb/deployment/CouchdbProcessor.java
index ce41d0a..307355e 100644
--- 
a/extensions/couchdb/deployment/src/main/java/org/apache/camel/quarkus/component/couchdb/deployment/CouchdbProcessor.java
+++ 
b/extensions/couchdb/deployment/src/main/java/org/apache/camel/quarkus/component/couchdb/deployment/CouchdbProcessor.java
@@ -19,8 +19,10 @@ package 
org.apache.camel.quarkus.component.couchdb.deployment;
 import java.util.ArrayList;
 import java.util.List;
 
+import io.quarkus.deployment.annotations.BuildProducer;
 import io.quarkus.deployment.annotations.BuildStep;
 import io.quarkus.deployment.builditem.FeatureBuildItem;
+import io.quarkus.deployment.builditem.IndexDependencyBuildItem;
 import io.quarkus.deployment.builditem.nativeimage.ReflectiveClassBuildItem;
 
 class CouchdbProcessor {
@@ -37,7 +39,14 @@ class CouchdbProcessor {
 List items = new 
ArrayList();
 items.add(new ReflectiveClassBuildItem(false, true, 
"org.lightcouch.Response"));
 items.add(new ReflectiveClassBuildItem(false, true, 
"org.lightcouch.CouchDbInfo"));
+items.add(new ReflectiveClassBuildItem(false, true, 
"org.lightcouch.ChangesResult$Row"));
+items.add(new ReflectiveClassBuildItem(false, true, 
"org.lightcouch.ChangesResult$Row$Rev"));
 return items;
 }
 
+@BuildStep
+void addDependenciesToIndexer(BuildProducer 
indexDependencyProducer) {
+indexDependencyProducer.produce(new 
IndexDependencyBuildItem("com.google.code.gson", "gson"));
+}
+
 }
diff --git a/integration-tests/couchdb/pom.xml 
b/integration-tests/couchdb/pom.xml
index 528e76f..3a1b3dc 100644
--- a/integration-tests/couchdb/pom.xml
+++ b/integration-tests/couchdb/pom.xml
@@ -64,6 +64,11 @@
 rest-assured
 test
 
+
+org.awaitility
+awaitility
+test
+
 
 
 
diff --git 
a/integration-tests/couchdb/src/main/java/org/apache/camel/quarkus/component/couchdb/it/CouchDbRoute.java
 
b/integration-tests/couchdb/src/main/java/org/apache/camel/quarkus/component/couchdb/it/CouchDbRoute.java
new file mode 100644
index 000..f9290b4
--- /dev/null
+++ 
b/integration-tests/couchdb/src/main/java/org/apache/camel/quarkus/component/couchdb/it/CouchDbRoute.java
@@ -0,0 +1,41 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *  http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.apache.camel.quarkus.component.couchdb.it;
+
+import javax.enterprise.context.ApplicationScoped;
+import javax.inject.Inject;
+
+import com.google.gson.JsonObject;
+import org.apache.camel.builder.RouteBuilder;
+
+import static 
org.apache.camel.quarkus.component.couchdb.it.CouchdbTestDocument.fromJsonObject;
+
+@ApplicationScoped
+public class CouchDbRoute extends RouteBuilder {
+
+static final String COUCHDB_ENDPOINT_URI = 
"couchdb:http://{{camel.couchdb.test.server.authority}}/database;;
+
+@Inject
+CouchdbResource resource;
+
+@Override
+public void configure() {
+from(COUCHDB_ENDPOINT_URI + 

[GitHub] [camel-quarkus] aldettinger merged pull request #1323: Added couchdb consumer support in native mode #1022

2020-06-09 Thread GitBox


aldettinger merged pull request #1323:
URL: https://github.com/apache/camel-quarkus/pull/1323


   



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.

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




[GitHub] [camel-quarkus] ppalaga commented on issue #1086: FastHeadersMapFactory ClassNotFoundException since 1.0.0-M6

2020-06-09 Thread GitBox


ppalaga commented on issue #1086:
URL: https://github.com/apache/camel-quarkus/issues/1086#issuecomment-641394597


   > camel-headersmap is apparently exluded in 
https://github.com/apache/camel-quarkus/blob/master/poms/bom/pom.xml
   
   Yes, we manage only those Camel bits in the runtime BOM which are used by 
our extensions. There is no camel-quarkus-headersmap yet. So, I'd say the 
reported behavior is not a bug.
   
   I wonder whether we should create camel-quarkus-headersmap? WDYT 
@lburgazzoli and @jamesnetherton ?



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.

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




[camel] branch master updated: camel-pdf: Link to PDFBox 2 Javadoc in documentation.

2020-06-09 Thread pascalschumacher
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/master by this push:
 new 5f22424  camel-pdf: Link to PDFBox 2 Javadoc in documentation.
5f22424 is described below

commit 5f22424402b37b4a41147445585e17f223b5710b
Author: Pascal Schumacher 
AuthorDate: Tue Jun 9 18:53:16 2020 +0200

camel-pdf: Link to PDFBox 2 Javadoc in documentation.
---
 components/camel-pdf/src/main/docs/pdf-component.adoc | 6 +++---
 docs/components/modules/ROOT/pages/pdf-component.adoc | 6 +++---
 2 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/components/camel-pdf/src/main/docs/pdf-component.adoc 
b/components/camel-pdf/src/main/docs/pdf-component.adoc
index 164df08..704d262 100644
--- a/components/camel-pdf/src/main/docs/pdf-component.adoc
+++ b/components/camel-pdf/src/main/docs/pdf-component.adoc
@@ -105,15 +105,15 @@ with the following path and query parameters:
 
 |`pdf-document` |*Mandatory* header for `append` operation and ignored in all 
other
 operations. Expected type is
-https://pdfbox.apache.org/docs/1.8.10/javadocs/org/apache/pdfbox/pdmodel/PDDocument.html[PDDocument].
+https://pdfbox.apache.org/docs/2.0.13/javadocs/org/apache/pdfbox/pdmodel/PDDocument.html[PDDocument].
 Stores PDF document which will be used for append operation.
 
 |`protection-policy` |Expected type is
-https://pdfbox.apache.org/docs/1.8.10/javadocs/org/apache/pdfbox/pdmodel/encryption/ProtectionPolicy.html[ProtectionPolicy].
+https://pdfbox.apache.org/docs/2.0.13/javadocs/org/apache/pdfbox/pdmodel/encryption/ProtectionPolicy.html[ProtectionPolicy].
 If specified then PDF document will be encrypted with it.
 
 |`decryption-material` |Expected type is
-https://pdfbox.apache.org/docs/1.8.10/javadocs/org/apache/pdfbox/pdmodel/encryption/DecryptionMaterial.html[DecryptionMaterial].
+https://pdfbox.apache.org/docs/2.0.13/javadocs/org/apache/pdfbox/pdmodel/encryption/DecryptionMaterial.html[DecryptionMaterial].
 *Mandatory* header if PDF document is encrypted.
 |===
 
diff --git a/docs/components/modules/ROOT/pages/pdf-component.adoc 
b/docs/components/modules/ROOT/pages/pdf-component.adoc
index 4f3c52f..1800e97 100644
--- a/docs/components/modules/ROOT/pages/pdf-component.adoc
+++ b/docs/components/modules/ROOT/pages/pdf-component.adoc
@@ -107,15 +107,15 @@ with the following path and query parameters:
 
 |`pdf-document` |*Mandatory* header for `append` operation and ignored in all 
other
 operations. Expected type is
-https://pdfbox.apache.org/docs/1.8.10/javadocs/org/apache/pdfbox/pdmodel/PDDocument.html[PDDocument].
+https://pdfbox.apache.org/docs/2.0.13/javadocs/org/apache/pdfbox/pdmodel/PDDocument.html[PDDocument].
 Stores PDF document which will be used for append operation.
 
 |`protection-policy` |Expected type is
-https://pdfbox.apache.org/docs/1.8.10/javadocs/org/apache/pdfbox/pdmodel/encryption/ProtectionPolicy.html[ProtectionPolicy].
+https://pdfbox.apache.org/docs/2.0.13/javadocs/org/apache/pdfbox/pdmodel/encryption/ProtectionPolicy.html[ProtectionPolicy].
 If specified then PDF document will be encrypted with it.
 
 |`decryption-material` |Expected type is
-https://pdfbox.apache.org/docs/1.8.10/javadocs/org/apache/pdfbox/pdmodel/encryption/DecryptionMaterial.html[DecryptionMaterial].
+https://pdfbox.apache.org/docs/2.0.13/javadocs/org/apache/pdfbox/pdmodel/encryption/DecryptionMaterial.html[DecryptionMaterial].
 *Mandatory* header if PDF document is encrypted.
 |===
 



[GitHub] [camel-website] aashnajena commented on pull request #386: chore: remove the width toggle

2020-06-09 Thread GitBox


aashnajena commented on pull request #386:
URL: https://github.com/apache/camel-website/pull/386#issuecomment-640740184


   I'm not very happy with how this makes the documentation/ download/ projects 
page look. The documentation pages are also looking a bit clustered. I'm not 
sure if this is the solution for all screen types. On a big screen, like the 
iMac I was using on call today, this makes more sense, but on my laptop screen 
I would much rather prefer the first option. Maybe we can switch the default 
layout to be wide, but I'd still want to at least keep the narrow option 
present. 
   
   
![image](https://user-images.githubusercontent.com/32356795/84056548-ff060680-a9d3-11ea-81e9-1a7287824fe7.png)
   
   
![image](https://user-images.githubusercontent.com/32356795/84056344-bb130180-a9d3-11ea-882d-2cd04e531856.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.

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




[GitHub] [camel-quarkus] aldettinger opened a new pull request #1323: Added couchdb consumer support in native mode #1022

2020-06-09 Thread GitBox


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


   [ ] An issue should be filed for the change unless this is a trivial change 
(fixing a typo or similar). One issue should ideally be fixed by not more than 
one commit and the other way round, each commit should fix just one issue, 
without pulling in other changes.
   [ ] Each commit in the pull request should have a meaningful and properly 
spelled subject line and body. Copying the title of the associated issue is 
typically enough. Please include the issue number in the commit message 
prefixed by #.
   [ ] The pull request description should explain what the pull request does, 
how, and why. If the info is available in the associated issue or some other 
external document, a link is enough.
   [ ] Phrases like Fix # or Fixes # will auto-close 
the named issue upon merging the pull request. Using them is typically a good 
idea.
   [ ] Please run mvn process-resources -Pformat (and amend the changes if 
necessary) before sending the pull request.
   [ ] Contributor guide is your good friend: 
https://camel.apache.org/camel-quarkus/latest/contributor-guide.html



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.

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




[GitHub] [camel] grisotto opened a new pull request #3902: Fix url to JIRA

2020-06-09 Thread GitBox


grisotto opened a new pull request #3902:
URL: https://github.com/apache/camel/pull/3902


   Fixed the url to "JIRA - getting started issues". The old one stopped work.
   
   [ ] Make sure there is a [JIRA 
issue](https://issues.apache.org/jira/browse/CAMEL) filed for the change 
(usually before you start working on it).  Trivial changes like typos do not 
require a JIRA issue.  Your pull request should address just this issue, 
without pulling in other changes.
   [ ] Each commit in the pull request should have a meaningful subject line 
and body.
   [ ] If you're unsure, you can format the pull request title like 
`[CAMEL-XXX] Fixes bug in camel-file component`, where you replace `CAMEL-XXX` 
with the appropriate JIRA issue.
   [ ] Write a pull request description that is detailed enough to understand 
what the pull request does, how, and why.
   [ ] Run `mvn clean install -Psourcecheck` in your module with source check 
enabled to make sure basic checks pass and there are no checkstyle violations. 
A more thorough check will be performed on your pull request automatically.
   Below are the contribution guidelines:
   https://github.com/apache/camel/blob/master/CONTRIBUTING.md



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.

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




[GitHub] [camel-k-runtime] nicolaferraro opened a new issue #358: Generate schema for YAML DSL

2020-06-09 Thread GitBox


nicolaferraro opened a new issue #358:
URL: https://github.com/apache/camel-k-runtime/issues/358


   That will be useful to help tooling



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.

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




[GitHub] [camel-k] astefanutti merged pull request #1490: feat: Prometheus support for Quarkus based on MicroProfile Metrics

2020-06-09 Thread GitBox


astefanutti merged pull request #1490:
URL: https://github.com/apache/camel-k/pull/1490


   



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.

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




[GitHub] [camel] chandra-h-bitd opened a new pull request #3900: CAMEL-15147 camel-core - Supervising route nicer logging

2020-06-09 Thread GitBox


chandra-h-bitd opened a new pull request #3900:
URL: https://github.com/apache/camel/pull/3900


   [ ] Make sure there is a [JIRA 
issue](https://issues.apache.org/jira/browse/CAMEL) filed for the change 
(usually before you start working on it).  Trivial changes like typos do not 
require a JIRA issue.  Your pull request should address just this issue, 
without pulling in other changes.
   [ ] Each commit in the pull request should have a meaningful subject line 
and body.
   [ ] If you're unsure, you can format the pull request title like 
`[CAMEL-XXX] Fixes bug in camel-file component`, where you replace `CAMEL-XXX` 
with the appropriate JIRA issue.
   [ ] Write a pull request description that is detailed enough to understand 
what the pull request does, how, and why.
   [ ] Run `mvn clean install -Psourcecheck` in your module with source check 
enabled to make sure basic checks pass and there are no checkstyle violations. 
A more thorough check will be performed on your pull request automatically.
   Below are the contribution guidelines:
   https://github.com/apache/camel/blob/master/CONTRIBUTING.md



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.

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




[GitHub] [camel-kafka-connector] valdar commented on issue #259: Camel-elasticsearch-rest-kafka-connector throws java.lang.NoClassDefFoundError: org/apache/logging/log4j/LogManager

2020-06-09 Thread GitBox


valdar commented on issue #259:
URL: 
https://github.com/apache/camel-kafka-connector/issues/259#issuecomment-641333191


   Hello, thanks for the detailed report.
   
   Can you pleas add `org.slf4j:log4j-over-slf4j:jar:1.7.30` jar (i.e. 
https://repo1.maven.org/maven2/org/slf4j/log4j-over-slf4j/1.7.30/log4j-over-slf4j-1.7.30.jar)
 to `connectors/camel-elasticsearch-rest-kafka-connector/` before running the 
s2i build and see if it makes 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.

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




[GitHub] [camel-kafka-connector] oscerd closed issue #261: Add download links to the connectors list page

2020-06-09 Thread GitBox


oscerd closed issue #261:
URL: https://github.com/apache/camel-kafka-connector/issues/261


   



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.

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




[GitHub] [camel-kafka-connector] oscerd commented on issue #263: Camel HDFS: does not work due to dependencies conflicts

2020-06-09 Thread GitBox


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


   I guess we need a JIRA for this, because it won't be easy, especially in 
Karaf.



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.

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




[GitHub] [camel-quarkus] ppalaga commented on issue #1090: Jira test fails in native mode on Quarkus Platform

2020-06-09 Thread GitBox


ppalaga commented on issue #1090:
URL: https://github.com/apache/camel-quarkus/issues/1090#issuecomment-641388223


   Not an issue anymore.



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.

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




[GitHub] [camel-website] jyotiattri commented on pull request #334: Fixed table first column font size bold

2020-06-09 Thread GitBox


jyotiattri commented on pull request #334:
URL: https://github.com/apache/camel-website/pull/334#issuecomment-640544384


   Yes, please
   
   
   On Mon, Jun 8, 2020, 4:36 PM Zoran Regvart  wrote:
   
   > I think we can close this now.
   >
   > —
   > You are receiving this because you authored the thread.
   > Reply to this email directly, view it on GitHub
   > ,
   > or unsubscribe
   > 

   > .
   >
   



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.

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




[GitHub] [camel-k] apupier opened a new issue #1511: kamel help trait --all -o json returns both yaml and json output

2020-06-09 Thread GitBox


apupier opened a new issue #1511:
URL: https://github.com/apache/camel-k/issues/1511


   tested with kamel 1.0.0



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.

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




[GitHub] [camel-website] zregvart closed pull request #324: Camel 14781 security page breadcrumps

2020-06-09 Thread GitBox


zregvart closed pull request #324:
URL: https://github.com/apache/camel-website/pull/324


   



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.

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




[GitHub] [camel-website] zregvart closed pull request #334: Fixed table first column font size bold

2020-06-09 Thread GitBox


zregvart closed pull request #334:
URL: https://github.com/apache/camel-website/pull/334


   



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.

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




[GitHub] [camel] davsclaus merged pull request #3900: CAMEL-15147 camel-core - Supervising route nicer logging

2020-06-09 Thread GitBox


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


   



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.

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




[GitHub] [camel-kafka-connector] oscerd opened a new pull request #257: In case of Sink we need to use toD instead of to

2020-06-09 Thread GitBox


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


   



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.

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




[GitHub] [camel-quarkus] oscerd merged pull request #1318: Fix #1314 Make Kudu native test runnable on Quarkus Platform on Java …

2020-06-09 Thread GitBox


oscerd merged pull request #1318:
URL: https://github.com/apache/camel-quarkus/pull/1318


   



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.

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




[GitHub] [camel-kafka-connector] orpiske opened a new issue #263: Camel HDFS: does not work due to dependencies conflicts

2020-06-09 Thread GitBox


orpiske opened a new issue #263:
URL: https://github.com/apache/camel-kafka-connector/issues/263


   It seems that the HDFS Connector cannot be loaded due to conflicts between 
the dependencies used by the component and the ones available on the connect 
runtime. 
   
   Without manipulating the classpath, loading the dependencies fail because a 
dependency carried by either one of them does not seem to contain the 
getProperties on the Application class (which comes from 
`javax.ws.rs:javax.ws.rs-api`). Manipulating the classpath to include this 
library and/or exclude specific dependencies cause the connector to fail to 
load due to other classpath related issues (ie.: `ClassNotFoundException`).
   
   I'll provide more logs later for this one.



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.

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




[GitHub] [camel-website] aashnajena commented on pull request #370: CAMEL-14994: Improve Projects Page

2020-06-09 Thread GitBox


aashnajena commented on pull request #370:
URL: https://github.com/apache/camel-website/pull/370#issuecomment-640534560


   Running `yarn checks` locally isn't giving me any errors under `$ 
link-checker`. How can I correct these links?



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.

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




[GitHub] [camel-kafka-connector] oscerd closed pull request #257: In case of Sink we need to use toD instead of to

2020-06-09 Thread GitBox


oscerd closed pull request #257:
URL: https://github.com/apache/camel-kafka-connector/pull/257


   



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.

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




[GitHub] [camel-kafka-connector] valdar commented on issue #260: AWS S3: bucket name not resolved when using URL configuration

2020-06-09 Thread GitBox


valdar commented on issue #260:
URL: 
https://github.com/apache/camel-kafka-connector/issues/260#issuecomment-640831388


   @orpiske can you post the complete config file please? 



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.

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




[GitHub] [camel-kafka-connector] orpiske opened a new issue #260: AWS S3: bucket name not resolved when using URL configuration

2020-06-09 Thread GitBox


orpiske opened a new issue #260:
URL: https://github.com/apache/camel-kafka-connector/issues/260


   The bucket name does not seem to be resolved when using only the URL to set 
the source. 
   
   Here's a snippet from a configuration file:
   
   ```
   
camel.source.url=aws-s3://ckc-s3?configuration=#class:org.apache.camel.kafkaconnector.source
   
.aws.s3.TestS3Configuration=accesskey=secretkey=http=US_EAST_1
   tasks.max=1
   topics=org.apache.camel.kafkaconnector.source.aws.s3.CamelSourceAWSS3ITCase
   ```
   
   Then, during startup: 
   
   ```
   INFO org.apache.camel.kafkaconnector.awss3.CamelAwss3SourceConnectorConfig - 
CamelAwss3SourceConnectorConfig values:
   ...
   camel.source.path.bucketNameOrArn = null
   ```
   
   To reproduce the problem run: 
   
   `mvn -DskipIntegrationTests=false -Dmaven.test.failure.ignore=true 
-Dmaven.test.error.ignore=true 
-Dit.test=CamelSourceAWSS3ITCase\#testBasicSendReceiveUsingUrl clean test`



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.

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




[GitHub] [camel-k] astefanutti edited a comment on pull request #1506: Add Camel Quarkus with MicroProfile Metrics and Prometheus Example

2020-06-09 Thread GitBox


astefanutti edited a comment on pull request #1506:
URL: https://github.com/apache/camel-k/pull/1506#issuecomment-640711269







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.

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




[GitHub] [camel-website] oscerd merged pull request #389: Change the headline for Camel-K 1.0.0

2020-06-09 Thread GitBox


oscerd merged pull request #389:
URL: https://github.com/apache/camel-website/pull/389


   



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.

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




[GitHub] [camel-website] zregvart closed pull request #271: Fixes Wastage of screen real-estate on large displays

2020-06-09 Thread GitBox


zregvart closed pull request #271:
URL: https://github.com/apache/camel-website/pull/271


   



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.

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




[GitHub] [camel-kafka-connector] oscerd commented on issue #264: Add CamelAMQP source and sink example properties

2020-06-09 Thread GitBox


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







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.

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




[GitHub] [camel-kafka-connector] orpiske edited a comment on issue #263: Camel HDFS: does not work due to dependencies conflicts

2020-06-09 Thread GitBox


orpiske edited a comment on issue #263:
URL: 
https://github.com/apache/camel-kafka-connector/issues/263#issuecomment-641339040


   > I guess we need a JIRA for this, because it won't be easy, especially in 
Karaf.
   
   I'll open one there, 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.

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




[GitHub] [camel-k] nicolaferraro opened a new pull request #1510: chore(release): bump version to 1.1.0-SNAPSHOT and update OLM/HELM

2020-06-09 Thread GitBox


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


   
   
   
   
   
   
   
   **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.

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




[GitHub] [camel-quarkus] oscerd closed issue #1308: Add an AWS2-Translate native extension

2020-06-09 Thread GitBox


oscerd closed issue #1308:
URL: https://github.com/apache/camel-quarkus/issues/1308


   



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.

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




[GitHub] [camel] AemieJ edited a comment on pull request #3893: CAMEL-14910 - Bundling of Components

2020-06-09 Thread GitBox


AemieJ edited a comment on pull request #3893:
URL: https://github.com/apache/camel/pull/3893#issuecomment-640772593


   @oscerd this PR builded for me successfully. Which PR are you talking about? 



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.

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




[GitHub] [camel-website] davsclaus commented on pull request #387: Camel K 1.0.0 announcement

2020-06-09 Thread GitBox


davsclaus commented on pull request #387:
URL: https://github.com/apache/camel-website/pull/387#issuecomment-641303728


   +1



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.

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




[GitHub] [camel-website] zregvart closed pull request #339: Camel 14857 change nav panel explore color

2020-06-09 Thread GitBox


zregvart closed pull request #339:
URL: https://github.com/apache/camel-website/pull/339


   



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.

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




[GitHub] [camel-quarkus] ppalaga commented on issue #1286: Figure out how to deprecate extensions

2020-06-09 Thread GitBox


ppalaga commented on issue #1286:
URL: https://github.com/apache/camel-quarkus/issues/1286#issuecomment-641278280







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.

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




[GitHub] [camel-k] astefanutti opened a new pull request #1506: Add Camel Quarkus with MicroProfile Metrics and Prometheus Example

2020-06-09 Thread GitBox


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


   Requires #1490.
   
   **Release Note**
   ```release-note
   Add Camel Quarkus with MicroProfile Metrics and Prometheus Example
   ```
   



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.

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




[GitHub] [camel-quarkus] galderz commented on issue #1166: Unresolved type Base64 in camel-jira native test

2020-06-09 Thread GitBox


galderz commented on issue #1166:
URL: https://github.com/apache/camel-quarkus/issues/1166#issuecomment-640660780


   Fixed.



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.

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




[GitHub] [camel-quarkus] ppalaga opened a new pull request #1318: Fix #1314 Make Kudu native test runnable on Quarkus Platform on Java …

2020-06-09 Thread GitBox


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


   …8 and 11
   
   Fix #1314



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.

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




[GitHub] [camel-kafka-connector-examples] oscerd commented on a change in pull request #8: Add AMQP source and sink examples

2020-06-09 Thread GitBox


oscerd commented on a change in pull request #8:
URL: 
https://github.com/apache/camel-kafka-connector-examples/pull/8#discussion_r437486641



##
File path: amqp/README.md
##
@@ -0,0 +1,66 @@
+# Camel-Kafka-connector Kafka to AMQP broker demo
+
+## Introduction
+
+This is an example for Camel-Kafka-connector
+
+## What is needed
+
+- An Artemis Broker 2.9.0 running
+- A Kafka Cluster 2.4.0 running 
+- Apache Qpid JMS client
+
+## Running Kafka
+
+```
+$KAFKA_HOME/bin/zookeeper-server-start.sh config/zookeeper.properties
+$KAFKA_HOME/bin/kafka-server-start.sh config/server.properties
+$KAFKA_HOME/bin/kafka-topics.sh --create --bootstrap-server localhost:9092 
--replication-factor 1 --partitions 1 --topic mytopic
+```
+
+## Running Artemis
+
+```
+$ARTEMIS_HOME/bin/$BROKER_NAME/bin/artemis run
+```
+
+## Setting up the needed bits and running the example
+
+You'll need to setup the plugin.path property in your kafka
+
+Open the `$KAFKA_HOME/config/connect-standalone.properties`
+
+and set the `plugin.path` property to your choosen location
+
+In this example we'll use `/home/oscerd/connectors/`
+
+```
+> cd /home/oscerd/connectors/
+> wget 
https://repo1.maven.org/maven2/org/apache/camel/kafkaconnector/camel-amqp-kafka-connector/0.2.0/camel-amqp-kafka-connector-0.2.0-package.zip
+> unzip camel-amqp-kafka-connector-0.2.0-package.zip
+> wget 
https://downloads.apache.org/qpid/jms/0.51.0/apache-qpid-jms-0.51.0-bin.tar.gz

Review comment:
   This should be removed when we release the new kafka-connector release 
0.3.0





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.

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




[GitHub] [camel-kafka-connector] oscerd closed issue #264: Add CamelAMQP source and sink example properties

2020-06-09 Thread GitBox


oscerd closed issue #264:
URL: https://github.com/apache/camel-kafka-connector/issues/264


   



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.

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




[GitHub] [camel-kafka-connector] rgannu opened a new pull request #265: Add AMQP examples for source and sink

2020-06-09 Thread GitBox


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


   Added AMQP examples for source and sink



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.

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




[GitHub] [camel-quarkus] galderz closed issue #1166: Unresolved type Base64 in camel-jira native test

2020-06-09 Thread GitBox


galderz closed issue #1166:
URL: https://github.com/apache/camel-quarkus/issues/1166


   



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.

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




[GitHub] [camel-k] zhfeng closed issue #1097: Saga example

2020-06-09 Thread GitBox


zhfeng closed issue #1097:
URL: https://github.com/apache/camel-k/issues/1097


   



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.

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




[GitHub] [camel-k] lburgazzoli edited a comment on pull request #1506: Add Camel Quarkus with MicroProfile Metrics and Prometheus Example

2020-06-09 Thread GitBox


lburgazzoli edited a comment on pull request #1506:
URL: https://github.com/apache/camel-k/pull/1506#issuecomment-640765727







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.

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




[GitHub] [camel-website] oscerd opened a new pull request #389: Change the headline for Camel-K 1.0.0

2020-06-09 Thread GitBox


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


   



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.

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




[GitHub] [camel-kafka-connector] oscerd opened a new pull request #266: Docs download link

2020-06-09 Thread GitBox


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


   Fixes #261 



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.

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




[GitHub] [camel-website] zregvart commented on pull request #370: CAMEL-14994: Improve Projects Page

2020-06-09 Thread GitBox


zregvart commented on pull request #370:
URL: https://github.com/apache/camel-website/pull/370#issuecomment-640538443


   This should be fixed with 855259a14f2a1cf10f52c19bd2635f5e98ac24be, I think 
the link checker should report errors. Perhaps it's the `CAMEL_ENV=production` 
which triggers minification that introduces the broken links. Anyhow the 
correct way to link to `index.html` pages is either by specifying the 
`/path/index.html` or to put the trailing slash on the path, e.g. `/path/`. 
That only works because Apache tolerates both, I think there's an extra 
roundtrip with a redirect, so this comes at a cost.



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.

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




[GitHub] [camel-kafka-connector] orpiske commented on issue #263: Camel HDFS: does not work due to dependencies conflicts

2020-06-09 Thread GitBox


orpiske commented on issue #263:
URL: 
https://github.com/apache/camel-kafka-connector/issues/263#issuecomment-641337334







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.

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




[GitHub] [camel-kafka-connector] oscerd opened a new issue #261: Add download links to the connectors list page

2020-06-09 Thread GitBox


oscerd opened a new issue #261:
URL: https://github.com/apache/camel-kafka-connector/issues/261


   



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.

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




[GitHub] [camel] jamesnetherton opened a new pull request #3901: CAMEL-15144: Add capability to customize BindableService class generation

2020-06-09 Thread GitBox


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


   https://issues.apache.org/jira/browse/CAMEL-15144



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.

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




[GitHub] [camel-quarkus] galderz opened a new issue #1319: NoClassDefFoundError for HttpServletRequest in native tests for olingo4

2020-06-09 Thread GitBox


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


   * Quarkus master.
   * Camel Quarkus master.
   * Graal 20.1.x.
   * OpenJDK 11 (not labs).
   
   This one is likely to be specific to the use of OpenJDK 11 (not present when 
using Oracle Labs). Similar issues in the past are 
https://github.com/quarkusio/quarkus/issues/8081 and 
https://github.com/apache/camel-quarkus/issues/1161.
   
   ```
   [quarkus-universe-integration-tests-camel-olingo4-999-SNAPSHOT-runner:25482] 
analysis:  99,017.27 ms,  5.57 GB
   Fatal error:java.lang.NoClassDefFoundError
   at 
java.base/jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native
 Method)
   at 
java.base/jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
   at 
java.base/jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
   at 
java.base/java.lang.reflect.Constructor.newInstance(Constructor.java:490)
   at 
java.base/java.util.concurrent.ForkJoinTask.getThrowableException(ForkJoinTask.java:603)
   at 
java.base/java.util.concurrent.ForkJoinTask.get(ForkJoinTask.java:1006)
   at 
com.oracle.svm.hosted.NativeImageGenerator.run(NativeImageGenerator.java:463)
   at 
com.oracle.svm.hosted.NativeImageGeneratorRunner.buildImage(NativeImageGeneratorRunner.java:359)
   at 
com.oracle.svm.hosted.NativeImageGeneratorRunner.build(NativeImageGeneratorRunner.java:518)
   at 
com.oracle.svm.hosted.NativeImageGeneratorRunner.main(NativeImageGeneratorRunner.java:117)
   at 
com.oracle.svm.hosted.NativeImageGeneratorRunner$JDK9Plus.main(NativeImageGeneratorRunner.java:546)
   Caused by: java.lang.NoClassDefFoundError: javax/servlet/http/ 
   at java.base/java.lang.Class.getDeclaredMethods0(Native Method)
   at 
java.base/java.lang.Class.privateGetDeclaredMethods(Class.java:3166)
   at java.base/java.lang.Class.getDeclaredMethods(Class.java:2309)
   at 
jdk.internal.vm.ci/jdk.vm.ci.hotspot.HotSpotResolvedObjectTypeImpl.getDeclaredMethods(HotSpotResolvedObjectTypeImpl.java:932)
   at 
com.oracle.svm.hosted.classinitialization.ClassInitializationFeature.declaresDefaultMethods(ClassInitializationFeature.java:385)
   at 
com.oracle.svm.hosted.classinitialization.ClassInitializationFeature.hasDefaultMethods(ClassInitializationFeature.java:373)
   at 
com.oracle.svm.hosted.classinitialization.ClassInitializationFeature.buildClassInitializationInfo(ClassInitializationFeature.java:358)
   at 
com.oracle.svm.hosted.classinitialization.ClassInitializationFeature.duringAnalysis(ClassInitializationFeature.java:193)
   at 
com.oracle.svm.hosted.NativeImageGenerator.lambda$runPointsToAnalysis$8(NativeImageGenerator.java:720)
   at 
com.oracle.svm.hosted.FeatureHandler.forEachFeature(FeatureHandler.java:70)
   at 
com.oracle.svm.hosted.NativeImageGenerator.runPointsToAnalysis(NativeImageGenerator.java:720)
   at 
com.oracle.svm.hosted.NativeImageGenerator.doRun(NativeImageGenerator.java:538)
   at 
com.oracle.svm.hosted.NativeImageGenerator.lambda$run$0(NativeImageGenerator.java:451)
   at 
java.base/java.util.concurrent.ForkJoinTask$AdaptedRunnableAction.exec(ForkJoinTask.java:1407)
   at 
java.base/java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:290)
   at 
java.base/java.util.concurrent.ForkJoinPool$WorkQueue.topLevelExec(ForkJoinPool.java:1020)
   at 
java.base/java.util.concurrent.ForkJoinPool.scan(ForkJoinPool.java:1656)
   at 
java.base/java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1594)
   at 
java.base/java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:177)
   Caused by: java.lang.ClassNotFoundException: 
javax.servlet.http.HttpServletRequest
   at 
java.base/java.net.URLClassLoader.findClass(URLClassLoader.java:471)
   at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:589)
   at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:522)
   ... 19 more
   ```



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.

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




[GitHub] [camel] sahuang opened a new pull request #3899: Update why-does-maven-not-download-dependencies.adoc

2020-06-09 Thread GitBox


sahuang opened a new pull request #3899:
URL: https://github.com/apache/camel/pull/3899


   Fix typo for "dependencies".



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.

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




[GitHub] [camel-kafka-connector] orpiske opened a new pull request #262: Split the tests in modules per service

2020-06-09 Thread GitBox


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


   This is a proposed change to solve the dependencies problems discussed on 
#211. 
   
   This changes breaks down the test module into submodules and groups the 
tests per service or service group (ie.: AWS, SJMS2, ElasticSearch) etc. This 
way, we can reduce the number of dependencies in test time which would help us 
find problems such as missing dependencies on the connector.
   
   As a result of this break-down, the logs are generated per module and the 
plugin.path configuration of the runtime loads only the connector under test. 
   
   There is a small increase in test time, as the embedded Kafka and the Kafka 
Connect Runtime are recycled for every test.



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.

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




[GitHub] [camel] jamesnetherton merged pull request #3901: CAMEL-15144: Add capability to customize BindableService class generation

2020-06-09 Thread GitBox


jamesnetherton merged pull request #3901:
URL: https://github.com/apache/camel/pull/3901


   



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.

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




[GitHub] [camel-website] oscerd commented on pull request #387: Camel K 1.0.0 announcement

2020-06-09 Thread GitBox


oscerd commented on pull request #387:
URL: https://github.com/apache/camel-website/pull/387#issuecomment-641278480


   Are we ok on merging this? @nicolaferraro @davsclaus 
   



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.

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




[GitHub] [camel-website] oscerd merged pull request #388: Fixed links

2020-06-09 Thread GitBox


oscerd merged pull request #388:
URL: https://github.com/apache/camel-website/pull/388


   



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.

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




[GitHub] [camel-kafka-connector-examples] rgannu opened a new pull request #8: Add AMQP source and sink examples

2020-06-09 Thread GitBox


rgannu opened a new pull request #8:
URL: https://github.com/apache/camel-kafka-connector-examples/pull/8


   Added AMQP source and sink examples. 
   Fixes https://github.com/apache/camel-kafka-connector/issues/264
   Fixes #264



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.

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




[GitHub] [camel-k] mmistretta opened a new issue #1507: Adding camel-jackson dependency creates issues with inner classes

2020-06-09 Thread GitBox


mmistretta opened a new issue #1507:
URL: https://github.com/apache/camel-k/issues/1507


   When adding the camel-jackson dependency, comments with imports, actual 
imports, etc inner classes are no longer found. 
   
   version: Camel K Client and Operator 1.0.0-RC2
   Example: 
https://github.com/jeremyrdavis/quarkus-cafe-demo/commits/camel-k-addition
 - commit works: d95b5ea360ca1dabe333b2ce568fc87b18e8594d
 - commit does not work: 4ee524f4ccf2c9dce3005b80e7fa44b4d1546528
   
   Process on OpenShift 4.4:
   - Create project
   - Install camel k operator
   - kamel install --olm=false --skip-cluster-setup --skip-operator-setup 
--maven-repository  https://jitpack.io@id=jitpack@snapshots
   - kamel run --name=rest-with-undertow --dependency=camel-rest 
--dependency=camel-undertow 
--dependency=mvn:com.github.jeremyrdavis:quarkus-cafe-demo:1.2-SNAPSHOT 
RestWithUndertow.java
   



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.

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




[GitHub] [camel-quarkus] ppalaga commented on issue #1223: Example can't be run from the project itself

2020-06-09 Thread GitBox


ppalaga commented on issue #1223:
URL: https://github.com/apache/camel-quarkus/issues/1223#issuecomment-641301733


   I cannot reproduce with Camel Quarkus tag 1.0.0-CR2. Could you please retry, 
@llowinge ?



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.

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




[GitHub] [camel-k] astefanutti commented on issue #580: Integration logging configuration

2020-06-09 Thread GitBox


astefanutti commented on issue #580:
URL: https://github.com/apache/camel-k/issues/580#issuecomment-641091733


   Yes, we need to have an option for structured logging.



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.

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




[GitHub] [camel] oscerd merged pull request #3893: CAMEL-14910 - Bundling of Components

2020-06-09 Thread GitBox


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


   



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.

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




[GitHub] [camel-kafka-connector] orpiske commented on issue #260: AWS S3: bucket name not resolved when using URL configuration

2020-06-09 Thread GitBox


orpiske commented on issue #260:
URL: 
https://github.com/apache/camel-kafka-connector/issues/260#issuecomment-640802274







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.

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




[GitHub] [camel-website] zregvart closed pull request #322: Camel 1481 security breadcrumps

2020-06-09 Thread GitBox


zregvart closed pull request #322:
URL: https://github.com/apache/camel-website/pull/322


   



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.

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




[GitHub] [camel] davsclaus commented on a change in pull request #3901: CAMEL-15144: Add capability to customize BindableService class generation

2020-06-09 Thread GitBox


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



##
File path: 
components/camel-grpc/src/main/java/org/apache/camel/component/grpc/GrpcConstants.java
##
@@ -50,4 +50,9 @@
 String GRPC_EVENT_TYPE_ON_NEXT = "onNext";
 String GRPC_EVENT_TYPE_ON_ERROR = "onError";
 String GRPC_EVENT_TYPE_ON_COMPLETED = "onCompleted";
+
+/*
+ * The registry key to lookup a custom BindableServiceFactory
+ */
+String GRPC_BINDABLE_SERVICE_FACTORY_NAME = "bindableServiceFactory";

Review comment:
   I wonder if we should prefix it with grpc, eg grpcBindableServiceFactory





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.

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




[GitHub] [camel] djencks commented on pull request #3893: CAMEL-14910 - Bundling of Components

2020-06-09 Thread GitBox


djencks commented on pull request #3893:
URL: https://github.com/apache/camel/pull/3893#issuecomment-640767706


   Is anything else needed before merging this?



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.

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




[GitHub] [camel-quarkus] ppalaga commented on issue #1313: Unresolved method AutoscalingAPIGroupDSL.v1() error in Kubernetes native image generation

2020-06-09 Thread GitBox


ppalaga commented on issue #1313:
URL: https://github.com/apache/camel-quarkus/issues/1313#issuecomment-640633123







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.

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




[GitHub] [camel] oscerd commented on pull request #3893: CAMEL-14910 - Bundling of Components

2020-06-09 Thread GitBox


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







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.

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




[GitHub] [camel-website] nicolaferraro commented on pull request #387: Camel K 1.0.0 announcement

2020-06-09 Thread GitBox


nicolaferraro commented on pull request #387:
URL: https://github.com/apache/camel-website/pull/387#issuecomment-640720393







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.

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




[GitHub] [camel-website] aashnajena commented on pull request #366: feat: change frontpage swoosh animation

2020-06-09 Thread GitBox


aashnajena commented on pull request #366:
URL: https://github.com/apache/camel-website/pull/366#issuecomment-640724262


   Looks really good to me!



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.

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




[GitHub] [camel-website] zregvart commented on pull request #386: chore: remove the width toggle

2020-06-09 Thread GitBox


zregvart commented on pull request #386:
URL: https://github.com/apache/camel-website/pull/386#issuecomment-640785335


   @aashnajena @AemieJ nice catch, thanks! I wasn't really testing this, I've 
made a change in 1bc995a77936490e6b51386a115ac7a4883aa15f to base the width on 
1366px (~76rem). It's not really targeting 1366px screens as we have navigation 
pane on the left (and soon on the right), but it leaves some margins on the 
left and right. The base was 720px (46rem) to me seems too narrow for the 
tables in the component reference.
   
   Please have a look at the preview and share your feedback.



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.

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




[GitHub] [camel-website] zregvart opened a new pull request #386: chore: remove the width toggle

2020-06-09 Thread GitBox


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


   This sets the `max-width` to `auto` which should allow the content to
   take up all the available space.



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.

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




[GitHub] [camel-k] astefanutti commented on issue #1509: addRoutes problem when running 01-Basic example from new camel-k-example docs

2020-06-09 Thread GitBox


astefanutti commented on issue #1509:
URL: https://github.com/apache/camel-k/issues/1509#issuecomment-640767857


   This should be fixed with #1485. You need to re-install the Camel catalogs, 
e.g.:
   
   ```
   kubectl apply -f deploy/camel-catalog-1.3.0-quarkus.yaml
   kubectl apply -f deploy/camel-catalog-1.3.0-main.yaml
   ```
   



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.

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




[GitHub] [camel-website] AemieJ commented on pull request #386: chore: remove the width toggle

2020-06-09 Thread GitBox


AemieJ commented on pull request #386:
URL: https://github.com/apache/camel-website/pull/386#issuecomment-640779239







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.

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




[GitHub] [camel-quarkus] JiriOndrusek commented on issue #1312: Debezium unit tests failing with Quarkus master

2020-06-09 Thread GitBox


JiriOndrusek commented on issue #1312:
URL: https://github.com/apache/camel-quarkus/issues/1312#issuecomment-641235236


   Please, assign to me.



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.

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




  1   2   3   >