Skip to content

Commit

Permalink
Release 0.7.2: disable odoo xmlrpc
Browse files Browse the repository at this point in the history
  • Loading branch information
guewen committed Sep 15, 2017
1 parent eac4e04 commit 5e4a854
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
8 changes: 8 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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)
++++++++++++++++++

Expand Down
2 changes: 1 addition & 1 deletion marabunta/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down
2 changes: 1 addition & 1 deletion marabunta/model.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 5e4a854

Please sign in to comment.