Sébastien Alix

Results 92 comments of Sébastien Alix

@gclough do not take it badly, but you should learn how to rebase your work (i.e. your PR branch) on top of `master` to avoid merge commits (which pollutes the...

@gclough A merge has a strong semantic and it should be used to merge a work into a main branch (and so we keep the information that a feature/important change...

@gclough what commands did you go exactly? As this PR already contains a merge commit, we have to delete it when performing the rebase. I will try that locally and...

@gclough I sent you an email, did you get it (just to know)?

@len-foss @sbidoul we tested this PR and we got a lot of blocked queries on `queue_job` when an exception occurs like: - a normal exception happening during the execution of...

Does the `forcereinstall` option could help here? http://docs.ansible.com/ansible/latest/modules/pip_module.html

@jbeficent setting the `PIP_EXISTS_ACTION` env var when invoking pip does the trick? If we update the task to this: ```yaml - name: Install Odoo from pip external requirements file become:...

Hi, It seems related to Ansible Galaxy platform, can you retry your install command?

Not at all, and I did't test in local yet. As a workaround, you can install roles via git/hg with a `requirements.yml` file: ```yaml - src: https://github.com/OCA/ansible-odoo version: master name:...

Using the `extra_args` parameter from http://docs.ansible.com/ansible/latest/pip_module.html I suppose?