You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by or...@apache.org on 2022/06/07 12:23:45 UTC

[camel] branch main updated: Regen for commit 31e0a33ed4f232b7d4616d0764b5be59d8a89df0

This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/main by this push:
     new f842e29343d Regen for commit 31e0a33ed4f232b7d4616d0764b5be59d8a89df0
f842e29343d is described below

commit f842e29343dc3b953e66e8f2075941a631240b47
Author: orpiske <or...@users.noreply.github.com>
AuthorDate: Tue Jun 7 11:55:47 2022 +0000

    Regen for commit 31e0a33ed4f232b7d4616d0764b5be59d8a89df0
    
    Signed-off-by: GitHub <no...@github.com>
---
 .../cometd/CometdProducerConsumerInOutInteractiveManualTest.java    | 3 ++-
 .../CometdProducerConsumerInteractiveAuthenticatedManualTest.java   | 6 ++++--
 2 files changed, 6 insertions(+), 3 deletions(-)

diff --git a/components/camel-cometd/src/test/java/org/apache/camel/component/cometd/CometdProducerConsumerInOutInteractiveManualTest.java b/components/camel-cometd/src/test/java/org/apache/camel/component/cometd/CometdProducerConsumerInOutInteractiveManualTest.java
index 45ebdf39dc1..1526f26470b 100644
--- a/components/camel-cometd/src/test/java/org/apache/camel/component/cometd/CometdProducerConsumerInOutInteractiveManualTest.java
+++ b/components/camel-cometd/src/test/java/org/apache/camel/component/cometd/CometdProducerConsumerInOutInteractiveManualTest.java
@@ -59,7 +59,8 @@ public class CometdProducerConsumerInOutInteractiveManualTest {
                 CometdComponent component = (CometdComponent) context.getComponent("cometds");
                 component.setSslPassword(pwd);
                 component.setSslKeyPassword(pwd);
-                URI keyStoreUrl = CometdProducerConsumerInOutInteractiveManualTest.class.getResource("/jsse/localhost.p12").toURI();
+                URI keyStoreUrl
+                        = CometdProducerConsumerInOutInteractiveManualTest.class.getResource("/jsse/localhost.p12").toURI();
                 component.setSslKeystore(keyStoreUrl.getPath());
 
                 from(URI).setExchangePattern(ExchangePattern.InOut).process(new Processor() {
diff --git a/components/camel-cometd/src/test/java/org/apache/camel/component/cometd/CometdProducerConsumerInteractiveAuthenticatedManualTest.java b/components/camel-cometd/src/test/java/org/apache/camel/component/cometd/CometdProducerConsumerInteractiveAuthenticatedManualTest.java
index 967e01314cf..92d84a48759 100644
--- a/components/camel-cometd/src/test/java/org/apache/camel/component/cometd/CometdProducerConsumerInteractiveAuthenticatedManualTest.java
+++ b/components/camel-cometd/src/test/java/org/apache/camel/component/cometd/CometdProducerConsumerInteractiveAuthenticatedManualTest.java
@@ -46,7 +46,8 @@ public class CometdProducerConsumerInteractiveAuthenticatedManualTest {
     private String pwd = "changeit";
 
     public static void main(String[] args) throws Exception {
-        CometdProducerConsumerInteractiveAuthenticatedManualTest me = new CometdProducerConsumerInteractiveAuthenticatedManualTest();
+        CometdProducerConsumerInteractiveAuthenticatedManualTest me
+                = new CometdProducerConsumerInteractiveAuthenticatedManualTest();
         me.testCometdProducerConsumerInteractive();
     }
 
@@ -69,7 +70,8 @@ public class CometdProducerConsumerInteractiveAuthenticatedManualTest {
                 component2.addExtension(bayeuxAuthenticator);
 
                 URI keyStoreUrl
-                        = CometdProducerConsumerInteractiveAuthenticatedManualTest.class.getResource("/jsse/localhost.p12").toURI();
+                        = CometdProducerConsumerInteractiveAuthenticatedManualTest.class.getResource("/jsse/localhost.p12")
+                                .toURI();
                 component.setSslKeystore(keyStoreUrl.getPath());
 
                 from("stream:in").to(URI).to(URIS);