exceptionfactory commented on code in PR #7469:
URL: https://github.com/apache/nifi/pull/7469#discussion_r1261787962
##########
nifi-commons/nifi-properties/src/main/java/org/apache/nifi/util/NiFiProperties.java:
##########
@@ -341,6 +341,11 @@ public class NiFiProperties extends ApplicationProperties {
public static final String PYTHON_MAX_PROCESSES_PER_TYPE =
"nifi.python.max.processes.per.extension.type";
public static final String PYTHON_COMMS_TIMEOUT =
"nifi.python.comms.timeout";
+ public static final String PYTHON_DEBUG_CONTROLLER_ENABLE =
"nifi.python.controller.debugpy.enable";
Review Comment:
Other Boolean properties in `nifi.properties` have names ending with
`enabled` as opposed to `enable`, it would be helpful to follow that pattern.
```suggestion
public static final String PYTHON_CONTROLLER_DEBUGPY_ENABLED =
"nifi.python.controller.debugpy.enabled";
```
--
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]