This is an automated email from the ASF dual-hosted git repository. gzurowski pushed a commit to branch camel-3.11.x in repository https://gitbox.apache.org/repos/asf/camel.git
commit 915d41054d93fb01340b7482382b6593bb5a7ec2 Author: Gregor Zurowski <[email protected]> AuthorDate: Wed Oct 6 09:54:09 2021 +0200 [Minor] Apply formatter --- .../apache/camel/component/google/pubsub/GooglePubsubEndpoint.java | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/components/camel-google/camel-google-pubsub/src/main/java/org/apache/camel/component/google/pubsub/GooglePubsubEndpoint.java b/components/camel-google/camel-google-pubsub/src/main/java/org/apache/camel/component/google/pubsub/GooglePubsubEndpoint.java index 4160669..e264504 100644 --- a/components/camel-google/camel-google-pubsub/src/main/java/org/apache/camel/component/google/pubsub/GooglePubsubEndpoint.java +++ b/components/camel-google/camel-google-pubsub/src/main/java/org/apache/camel/component/google/pubsub/GooglePubsubEndpoint.java @@ -64,7 +64,8 @@ public class GooglePubsubEndpoint extends DefaultEndpoint { @UriParam(name = "loggerId", description = "Logger ID to use when a match to the parent route required") private String loggerId; - @UriParam(label = "consumer", name = "concurrentConsumers", description = "The number of parallel streams consuming from the subscription", + @UriParam(label = "consumer", name = "concurrentConsumers", + description = "The number of parallel streams consuming from the subscription", defaultValue = "1") private Integer concurrentConsumers = 1; @@ -72,7 +73,8 @@ public class GooglePubsubEndpoint extends DefaultEndpoint { description = "The max number of messages to receive from the server in a single API call", defaultValue = "1") private Integer maxMessagesPerPoll = 1; - @UriParam(label = "consumer", name = "synchronousPull", description = "Synchronously pull batches of messages", defaultValue = "false") + @UriParam(label = "consumer", name = "synchronousPull", description = "Synchronously pull batches of messages", + defaultValue = "false") private boolean synchronousPull; @UriParam(label = "consumer", defaultValue = "AUTO", enums = "AUTO,NONE",
