tjwatson commented on code in PR #438: URL: https://github.com/apache/felix-dev/pull/438#discussion_r2282433249
########## scr/src/main/java/org/apache/felix/scr/impl/Activator.java: ########## @@ -225,8 +225,11 @@ protected void doStart() throws Exception super.doStart(); - m_componentCommands = new ComponentCommands(m_context, m_globalContext, runtime, m_configuration); - m_componentCommands.register(); + m_componentCommands = new ComponentCommands(m_context, m_globalContext, runtime, m_configuration); + if(m_configuration.isCommandsEnabled()) { + m_componentCommands.register(); + } Review Comment: The formatting here seems off. Could you update before merging this? -- 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: dev-unsubscr...@felix.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org