Commit d0b823b4 authored by Arnaud Fontaine's avatar Arnaud Fontaine

An HTTP URL with an IPv6 address must be enclosed in brackets.

parent 9f64603b
...@@ -90,7 +90,7 @@ class Recipe(BaseSlapRecipe): ...@@ -90,7 +90,7 @@ class Recipe(BaseSlapRecipe):
tester_config['filename_prefix'] = '%s-%s' % (self.computer_id, tester_config['filename_prefix'] = '%s-%s' % (self.computer_id,
self.computer_partition_id) self.computer_partition_id)
tester_connection = {'url': 'http://%s:5000/' % \ tester_connection = {'url': 'http://[%s]:5000/' % \
tester_config['tester_address']} tester_config['tester_address']}
self.computer_partition.setConnectionDict(tester_connection) self.computer_partition.setConnectionDict(tester_connection)
......
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