Fixes
This commit is contained in:
@@ -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 */
|
||||||
|
|||||||
+1
-1
@@ -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 */
|
||||||
|
|||||||
Reference in New Issue
Block a user