Commit 2385a566 authored by Vincent Pelletier's avatar Vincent Pelletier

Don't use '/' to separate master addresses.

parent 5d7dc240
...@@ -261,7 +261,7 @@ class NEOCluster(object): ...@@ -261,7 +261,7 @@ class NEOCluster(object):
self.cluster_name = 'neo_%s' % (random.randint(0, 100), ) self.cluster_name = 'neo_%s' % (random.randint(0, 100), )
master_node_list = [self.port_allocator.allocate(address_type, local_ip) master_node_list = [self.port_allocator.allocate(address_type, local_ip)
for i in xrange(master_count)] for i in xrange(master_count)]
self.master_nodes = '/'.join('%s:%s' % ( self.master_nodes = ' '.join('%s:%s' % (
buildUrlFromString(self.local_ip), x, ) buildUrlFromString(self.local_ip), x, )
for x in master_node_list) for x in master_node_list)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment