diff --git a/HISTORY.rst b/HISTORY.rst index 80d3700..65cb502 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -16,6 +16,14 @@ Unreleased **Build** +0.7.2 (2017-09-15) +++++++++++++++++++ + +**Bugfixes** + +* Use --no-xmlrpc option when running odoo as the new web server use the same port, + it's not needed anyway + 0.7.1 (2017-09-11) ++++++++++++++++++ diff --git a/marabunta/core.py b/marabunta/core.py index 410c215..f27659d 100644 --- a/marabunta/core.py +++ b/marabunta/core.py @@ -27,7 +27,7 @@ from .runner import Runner from .web import WebApp -__version__ = "0.7.1" +__version__ = "0.7.2" logging.getLogger('werkzeug').setLevel(logging.ERROR) diff --git a/marabunta/model.py b/marabunta/model.py index 3fb8d0c..615123a 100644 --- a/marabunta/model.py +++ b/marabunta/model.py @@ -183,7 +183,7 @@ def operation(self, exclude_addons=None): exclude_addons = set() install_command = self.options.install_command install_args = self.options.install_args[:] or [] - install_args += [u'--workers=0', u'--stop-after-init'] + install_args += [u'--workers=0', u'--stop-after-init', u'--no-xmlrpc'] to_install = self.to_install - exclude_addons if to_install: