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

:ambulance: Avoid trying to set db_host with an empty value

parent 80f8bfb5
No related branches found
No related tags found
1 merge request!117🚑 Avoid trying to set db_host with an empty value
...@@ -2,6 +2,11 @@ ...@@ -2,6 +2,11 @@
History History
======= =======
16.5.1
------
Avoid trying to set db_host with an empty value.
16.5.0 16.5.0
------ ------
......
...@@ -766,8 +766,8 @@ ...@@ -766,8 +766,8 @@
_logger.info("You can add the --create-user argument to create it") _logger.info("You can add the --create-user argument to create it")
return 16 return 16
arg.append("--db_host") arg.append("--db_host")
arg.append(db_host) arg.append(db_host)
# --- restore --- # --- restore ---
# TODO find out why odoo_help would stop us from restoring # TODO find out why odoo_help would stop us from restoring
......
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