oscerd opened a new issue, #9052:
URL: https://github.com/apache/camel-quarkus/issues/9052

   `extensions-jvm/cli-connector/.../CamelCliConnectorConfig.java:32`
   
   ```java
   @WithDefault("true")
   boolean enabled();
   ```
   
   `CliConnectorProcessor` applies no launch-mode condition — the only gate is 
this flag — and `CamelCliConnectorRecorder` unconditionally calls 
`factory.setEnabled(true)`. Only `sigterm()` handling is launch-mode aware. The 
connector's action-file IPC is therefore active in production builds.
   
   **Suggested fix**
   
   Gate it the way the console extension is gated — dev/test by default with an 
explicit opt-in for production — or flip the default to `false` outside 
dev/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.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to