NIFI-664: - Addressing incorrect argument to setTimeout call. Project: http://git-wip-us.apache.org/repos/asf/incubator-nifi/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-nifi/commit/5fb5fa6d Tree: http://git-wip-us.apache.org/repos/asf/incubator-nifi/tree/5fb5fa6d Diff: http://git-wip-us.apache.org/repos/asf/incubator-nifi/diff/5fb5fa6d
Branch: refs/heads/NIFI-632 Commit: 5fb5fa6da2504a8e73e1514031dfbb9557765442 Parents: ecb3680 Author: Matt Gilman <[email protected]> Authored: Sun Jun 7 11:26:14 2015 -0400 Committer: Matt Gilman <[email protected]> Committed: Sun Jun 7 11:26:14 2015 -0400 ---------------------------------------------------------------------- .../src/main/webapp/js/nf/canvas/nf-controller-service.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-nifi/blob/5fb5fa6d/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-controller-service.js ---------------------------------------------------------------------- diff --git a/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-controller-service.js b/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-controller-service.js index 39bbe64..9f2f22f 100644 --- a/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-controller-service.js +++ b/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-controller-service.js @@ -656,7 +656,7 @@ nf.ControllerService = (function () { deferred.resolve(); } else { if (typeof pollCondition === 'function' && pollCondition()) { - setTimeout(poll(), getTimeout()); + setTimeout(poll, getTimeout()); } else { deferred.reject(); }
