Commit b89ed82d authored by Łukasz Nowak's avatar Łukasz Nowak

- remove not required parameters from connection dict


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@44129 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 22f43fea
...@@ -194,12 +194,8 @@ class Recipe(BaseSlapRecipe): ...@@ -194,12 +194,8 @@ class Recipe(BaseSlapRecipe):
CONFIG))) CONFIG)))
self.connection_dict.update( self.connection_dict.update(
kumo_manager_ip=CONFIG['kumo_manager_ip'], kumo_address = '%s:%s' % (CONFIG['kumo_gateway_ip'],
kumo_manager_port=CONFIG['kumo_manager_port'], CONFIG['kumo_gateway_port'])
kumo_server_ip=CONFIG['kumo_server_ip'],
kumo_server_port=CONFIG['kumo_server_port'],
kumo_gateway_ip=CONFIG['kumo_gateway_ip'],
kumo_gateway_port=CONFIG['kumo_gateway_port'],
) )
def installMemcached(self, ip, port): def installMemcached(self, ip, port):
......
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