1
0
mirror of https://github.com/redis/node-redis.git synced 2025-08-06 02:15:48 +03:00

tests were failing on my old mac (node 0.10.40, osx 10.9.5, 2.8.7)

This commit is contained in:
bcoe
2015-10-03 21:08:00 -07:00
parent 25113e6759
commit 0db1152492
2 changed files with 5 additions and 5 deletions

View File

@@ -159,11 +159,11 @@ module.exports = {
killConnection: function (client) {
// Change the connection option to a non existing one and destroy the stream
client.connectionOption = {
port: 6370,
host: '127.0.0.2',
port: 999999,
host: '127.0.0.1',
family: 4
};
client.address = '127.0.0.2:6370';
client.address = '127.0.0.1:999999';
client.stream.destroy();
}
};