Commit 4fe938d9 authored by Grégory Wisniewski's avatar Grégory Wisniewski

Bug fix in storage/bootstrap test, use test:test as SQL identifiers.


git-svn-id: https://svn.erp5.org/repos/neo/branches/prototype3@352 71dcc9de-d417-0410-9af5-da40c76e7ee4
parent 52383e85
...@@ -55,9 +55,9 @@ partitions: 1009 ...@@ -55,9 +55,9 @@ partitions: 1009
# The name of this cluster. # The name of this cluster.
name: main name: main
# The user name for the database. # The user name for the database.
user: neo user: %(user)s
# The password for the database. # The password for the database.
password: neo password: %(password)s
connector : SocketConnector connector : SocketConnector
# The first master. # The first master.
[mastertest] [mastertest]
...@@ -67,7 +67,9 @@ server: 127.0.0.1:10010 ...@@ -67,7 +67,9 @@ server: 127.0.0.1:10010
database: %(database)s database: %(database)s
server: 127.0.0.1:10020 server: 127.0.0.1:10020
""" % { """ % {
'database': NEO_SQL_DATABASE 'database': NEO_SQL_DATABASE,
'user': NEO_SQL_USER,
'password': NEO_SQL_PASSWORD,
} }
# SQL connection # SQL connection
connect_arg_dict = {'user': SQL_ADMIN_USER} connect_arg_dict = {'user': SQL_ADMIN_USER}
......
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