davsclaus commented on code in PR #26226:
URL: https://github.com/apache/camel/pull/26226#discussion_r3967319228
##########
dsl/camel-jbang/camel-jbang-core/src/main/java/org/apache/camel/dsl/jbang/core/commands/Run.java:
##########
@@ -365,6 +367,8 @@ public boolean disarrangeLogging() {
return true;
} else if (RuntimeType.springBoot == runtime) {
return true;
+ } else if (RuntimeType.main == runtime) {
Review Comment:
Good catch, thanks. It was correct but only by accident of history: the two
existing branches were for Quarkus and Spring Boot, and this PR just appended a
third for main. Since every runtime except the in-process jbang one now spawns
a separate JVM, I collapsed it into a single `return RuntimeType.jbang !=
runtime;` with a comment, in 4b19869fb53e.
_Claude Code on behalf of 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.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]