Commit 3f309e69 authored by Sebastien Robin's avatar Sebastien Robin

fixed instanciation of erp5testnode

test_suite_master_url and project_title were transformed as
tuple by mistake
parent f75c5828
...@@ -51,11 +51,11 @@ class Recipe(BaseSlapRecipe): ...@@ -51,11 +51,11 @@ class Recipe(BaseSlapRecipe):
CONFIG['test_node_title'] = self.parameter_dict.get('test_node_title') CONFIG['test_node_title'] = self.parameter_dict.get('test_node_title')
CONFIG['test_suite'] = self.parameter_dict.get('test_suite') CONFIG['test_suite'] = self.parameter_dict.get('test_suite')
CONFIG['node_quantity'] = self.parameter_dict.get('node_quantity', '1') CONFIG['node_quantity'] = self.parameter_dict.get('node_quantity', '1')
CONFIG['project_title'] = self.parameter_dict.get('project_title'), CONFIG['project_title'] = self.parameter_dict.get('project_title')
CONFIG['ipv4_address'] = self.getLocalIPv4Address() CONFIG['ipv4_address'] = self.getLocalIPv4Address()
CONFIG['ipv6_address'] = self.getGlobalIPv6Address() CONFIG['ipv6_address'] = self.getGlobalIPv6Address()
CONFIG['test_suite_master_url'] = self.parameter_dict.get( CONFIG['test_suite_master_url'] = self.parameter_dict.get(
'test_suite_master_url', None), 'test_suite_master_url', None)
CONFIG['git_binary'] = self.options['git_binary'] CONFIG['git_binary'] = self.options['git_binary']
CONFIG['slapgrid_partition_binary'] = self.options[ CONFIG['slapgrid_partition_binary'] = self.options[
'slapgrid_partition_binary'] 'slapgrid_partition_binary']
......
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