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