Skip to content
Snippets Groups Projects
Commit 5ea793d9f030 authored by Vincent Hatakeyama's avatar Vincent Hatakeyama
Browse files

:ambulance: user that is in default odoo configuration file is not present in...

:ambulance: user that is in default odoo configuration file is not present in the database, so use another default
parent c2f28d5155b9
No related branches found
No related tags found
No related merge requests found
......@@ -377,8 +377,6 @@
arg = [
'start',
]
if db_user:
arg.append('--db_user %s' % db_user)
if db_password:
arg.append('--db_password %s' % db_password)
if nmspc.update:
......@@ -504,6 +502,7 @@
# default values if nothing else
if not user:
user = 'odoo'
arg.append('--db_user %s' % user)
if not password:
password = 'odoo'
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment