You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nifi.apache.org by ma...@apache.org on 2015/04/10 23:21:51 UTC

[16/20] incubator-nifi git commit: NIFI-507: Make default not to yield for ports and funnels

NIFI-507: Make default not to yield for ports and funnels


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

Branch: refs/heads/develop
Commit: 2c6b2a56640df57cb816b84b39f061d0d5271bce
Parents: c201aa1
Author: Mark Payne <ma...@hotmail.com>
Authored: Fri Apr 10 11:06:12 2015 -0400
Committer: Mark Payne <ma...@hotmail.com>
Committed: Fri Apr 10 11:06:12 2015 -0400

----------------------------------------------------------------------
 .../nifi/controller/tasks/ContinuallyRunConnectableTask.java       | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-nifi/blob/2c6b2a56/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-framework-core/src/main/java/org/apache/nifi/controller/tasks/ContinuallyRunConnectableTask.java
----------------------------------------------------------------------
diff --git a/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-framework-core/src/main/java/org/apache/nifi/controller/tasks/ContinuallyRunConnectableTask.java b/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-framework-core/src/main/java/org/apache/nifi/controller/tasks/ContinuallyRunConnectableTask.java
index b5b60c9..5ecd22e 100644
--- a/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-framework-core/src/main/java/org/apache/nifi/controller/tasks/ContinuallyRunConnectableTask.java
+++ b/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-framework-core/src/main/java/org/apache/nifi/controller/tasks/ContinuallyRunConnectableTask.java
@@ -107,6 +107,6 @@ public class ContinuallyRunConnectableTask implements Callable<Boolean> {
             return true;
         }
         
-        return true;
+        return false;	// do not yield
     }
 }