Commit 9f884d35 authored by Sebastien Robin's avatar Sebastien Robin

use ',' separator instead of ':', this is better

because connection string might use ':' in order
to specify port numbers

git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@41607 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 97c6dddf
......@@ -262,7 +262,7 @@ def getExtraSqlConnectionStringList():
"""Return list of extra available SQL connection string
"""
return os.environ.get('extra_sql_connection_string_list',
'test2 test2:test3 test3').split(':')
'test2 test2,test3 test3').split(',')
instance_random = random.Random(hash(os.environ['INSTANCE_HOME']))
......
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