davsclaus commented on code in PR #18212: URL: https://github.com/apache/camel/pull/18212#discussion_r2122951493
########## components/camel-nats/src/main/java/org/apache/camel/component/nats/NatsConfiguration.java: ########## @@ -90,6 +90,12 @@ public class NatsConfiguration { private boolean traceConnection; @UriParam(label = "advanced") private HeaderFilterStrategy headerFilterStrategy = new DefaultHeaderFilterStrategy(); + @UriParam(label = "advanced", defaultValue = "true") + private boolean jetstreamEnabled = true; + @UriParam(label = "advanced", defaultValue = "default-stream") + private String jetstreamName = "default-stream"; Review Comment: Is it not better to make the end user define the name instead of using `default-stream` which would otherwise be confusing if they dont know why something fails or happens or what stream is actually used by camel with their account. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org