NIFI-664:

- Addressing incorrect argument to setTimeout call.
This commit is contained in:
Matt Gilman 2015-06-07 11:26:14 -04:00
parent ecb3680a77
commit 5fb5fa6da2
1 changed files with 1 additions and 1 deletions

View File

@ -656,7 +656,7 @@ nf.ControllerService = (function () {
deferred.resolve(); deferred.resolve();
} else { } else {
if (typeof pollCondition === 'function' && pollCondition()) { if (typeof pollCondition === 'function' && pollCondition()) {
setTimeout(poll(), getTimeout()); setTimeout(poll, getTimeout());
} else { } else {
deferred.reject(); deferred.reject();
} }