change localhost -> 127.0.0.1 to avoid v6 proto

This commit is contained in:
olevole
2023-02-24 19:10:45 +03:00
parent 963ff91744
commit a19e70e078
2 changed files with 2 additions and 2 deletions

View File

@@ -13,7 +13,7 @@ var bsWatcher=function(ip,port,tube,callback)
}
bsWatcher.prototype.connect=function()
{
this.client=bs.Client('localhost:11300');
this.client=bs.Client('127.0.0.1:11300');
this.client.addListener('connect', function() {
this.connectionError=false;
}.bind(this));

View File

@@ -1 +1 @@
22.12
23.03