Repository: nifi
Updated Branches:
  refs/heads/NIFI-259 3e1399651 -> fcf837b5a


NIFI-259:
- Restoring the call to isListFlowFilesEndpoint when deciding if a response is 
interrupted.


Project: http://git-wip-us.apache.org/repos/asf/nifi/repo
Commit: http://git-wip-us.apache.org/repos/asf/nifi/commit/fcf837b5
Tree: http://git-wip-us.apache.org/repos/asf/nifi/tree/fcf837b5
Diff: http://git-wip-us.apache.org/repos/asf/nifi/diff/fcf837b5

Branch: refs/heads/NIFI-259
Commit: fcf837b5afd77861e4df028ccb7a138721ae5a33
Parents: 3e13996
Author: Matt Gilman <[email protected]>
Authored: Thu Jan 21 16:35:59 2016 -0500
Committer: Matt Gilman <[email protected]>
Committed: Thu Jan 21 16:35:59 2016 -0500

----------------------------------------------------------------------
 .../org/apache/nifi/cluster/manager/impl/WebClusterManager.java    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/nifi/blob/fcf837b5/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-framework-cluster/src/main/java/org/apache/nifi/cluster/manager/impl/WebClusterManager.java
----------------------------------------------------------------------
diff --git 
a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-framework-cluster/src/main/java/org/apache/nifi/cluster/manager/impl/WebClusterManager.java
 
b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-framework-cluster/src/main/java/org/apache/nifi/cluster/manager/impl/WebClusterManager.java
index cc93dc2..a8f6118 100644
--- 
a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-framework-cluster/src/main/java/org/apache/nifi/cluster/manager/impl/WebClusterManager.java
+++ 
b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-framework-cluster/src/main/java/org/apache/nifi/cluster/manager/impl/WebClusterManager.java
@@ -2555,7 +2555,7 @@ public class WebClusterManager implements 
HttpClusterManager, ProtocolHandler, C
                 || isControllerServicesEndpoint(uri, method) || 
isControllerServiceEndpoint(uri, method)
                 || isControllerServiceReferenceEndpoint(uri, method) || 
isControllerServiceStateEndpoint(uri, method)
                 || isReportingTasksEndpoint(uri, method) || 
isReportingTaskEndpoint(uri, method) || isReportingTaskStateEndpoint(uri, 
method)
-                || isDropRequestEndpoint(uri, method);
+                || isDropRequestEndpoint(uri, method) || 
isListFlowFilesEndpoint(uri, method);
     }
 
     private void mergeProcessorValidationErrors(final ProcessorDTO processor, 
Map<NodeIdentifier, ProcessorDTO> processorMap) {

Reply via email to