Switch back non-cluster tests to localhost

This commit is contained in:
Nicolas Dextraze
2017-01-28 18:35:35 -08:00
parent faed60b8ac
commit 0463d85cfe
3 changed files with 6 additions and 6 deletions

View File

@ -9,9 +9,9 @@ var settings = {
}
};
var gossipSeeds = [
new client.GossipSeed({host: 'localhost', port: 1113}),
new client.GossipSeed({host: 'localhost', port: 2113}),
new client.GossipSeed({host: 'localhost', port: 3113})
new client.GossipSeed({host: '192.168.33.10', port: 1113}),
new client.GossipSeed({host: '192.168.33.11', port: 1113}),
new client.GossipSeed({host: '192.168.33.12', port: 1113})
];
var conn = client.createConnection(settings, gossipSeeds);