Fixes
This commit is contained in:
parent
8dd7992043
commit
d518741bb1
@ -13,7 +13,7 @@ Helper.each(Conf.items, function(item) {
|
||||
/* private */
|
||||
function reconnect(item) {
|
||||
Log.debug('Reconnect ' + item.host);
|
||||
setTimeout(connect(item), 10000);
|
||||
setTimeout(function() { connect(item) }, 10000);
|
||||
}
|
||||
|
||||
/* private */
|
||||
|
||||
@ -13,7 +13,7 @@ Helper.each(Conf.items, function(item) {
|
||||
/* private */
|
||||
function reconnect(item) {
|
||||
Log.debug('Reconnect ' + item.host);
|
||||
setTimeout(connect(item), 10000);
|
||||
setTimeout(function() { connect(item) }, 10000);
|
||||
}
|
||||
|
||||
/* private */
|
||||
|
||||
@ -13,7 +13,7 @@ Helper.each(Conf.items, function(item) {
|
||||
/* private */
|
||||
function reconnect(item) {
|
||||
Log.debug('Reconnect ' + item.host);
|
||||
setTimeout(connect(item), 10000);
|
||||
setTimeout(function() { connect(item) }, 10000);
|
||||
}
|
||||
|
||||
/* private */
|
||||
|
||||
@ -13,7 +13,7 @@ Helper.each(Conf.items, function(item) {
|
||||
/* private */
|
||||
function reconnect(item) {
|
||||
Log.debug('Reconnect ' + item.host);
|
||||
setTimeout(connect(item), 10000);
|
||||
setTimeout(function() { connect(item) }, 10000);
|
||||
}
|
||||
|
||||
/* private */
|
||||
|
||||
@ -13,7 +13,7 @@ Helper.each(Conf.items, function(item) {
|
||||
/* private */
|
||||
function reconnect(item) {
|
||||
Log.debug('Reconnect ' + item.host);
|
||||
setTimeout(connect(item), 10000);
|
||||
setTimeout(function() { connect(item) }, 10000);
|
||||
}
|
||||
|
||||
/* private */
|
||||
|
||||
@ -13,7 +13,7 @@ Helper.each(Conf.items, function(item) {
|
||||
/* private */
|
||||
function reconnect(item) {
|
||||
Log.debug('Reconnect ' + item.host);
|
||||
setTimeout(connect(item), 10000);
|
||||
setTimeout(function() { connect(item) }, 10000);
|
||||
}
|
||||
|
||||
/* private */
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user