exceptionfactory commented on code in PR #7971:
URL: https://github.com/apache/nifi/pull/7971#discussion_r1380403156


##########
nifi-framework-api/src/main/java/org/apache/nifi/components/AsyncLoadedProcessor.java:
##########
@@ -17,14 +17,18 @@
 
 package org.apache.nifi.components;
 
-public interface AsyncLoadedProcessor {
+import org.apache.nifi.processor.Processor;
+
+public interface AsyncLoadedProcessor extends Processor {
     default boolean isLoaded() {
         return getState() == LoadState.FINISHED_LOADING;
     }
 
     LoadState getState();
 
     enum LoadState {
+        INITIALIZING_PYTHON_ENVIRONMENT,

Review Comment:
   Should this be shortened to `INITIALIZING_ENVIRONMENT`?



-- 
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