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

docker_dev_start: Fix missing proxy mode in command line when using workers.

parent 27dbd869877b
No related branches found
No related tags found
1 merge request!206🚑 Odoo scripts version number fix for editable installs
...@@ -7,6 +7,8 @@ ...@@ -7,6 +7,8 @@
Fix detecting existing container. Fix detecting existing container.
docker_dev_start: Fix missing proxy mode in command line when using workers.
21.0.7 21.0.7
------ ------
......
...@@ -55,5 +55,5 @@ ...@@ -55,5 +55,5 @@
_logger = logging.getLogger(__name__) _logger = logging.getLogger(__name__)
__version__ = "3.15.0" __version__ = "3.15.1"
__date__ = "2017-08-11" __date__ = "2017-08-11"
...@@ -59,5 +59,5 @@ ...@@ -59,5 +59,5 @@
__date__ = "2017-08-11" __date__ = "2017-08-11"
__updated__ = "2023-10-31" __updated__ = "2023-12-05"
def __parser(project_name: str) -> ArgumentParser: def __parser(project_name: str) -> ArgumentParser:
...@@ -1305,6 +1305,7 @@ ...@@ -1305,6 +1305,7 @@
options["envs"]["MARABUNTA_WEB_PORT"] = str(odoo_run_port) options["envs"]["MARABUNTA_WEB_PORT"] = str(odoo_run_port)
else: else:
caddy_port = "2019" caddy_port = "2019"
arg.append("--proxy-mode")
# TODO pre odoo 13: check if http-port should be changed to xmlrpc-port # TODO pre odoo 13: check if http-port should be changed to xmlrpc-port
gevent_uri = "/websocket" gevent_uri = "/websocket"
gevent_option = "--gevent-port" gevent_option = "--gevent-port"
......
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