Commit 3f6074d2 by John Jarvis

pip installs are hanging for xqueue

We were hanging on this:

```
Obtaining pika from
git+https://github.com/pika/pika.git@a731347fc0#egg=pika (from -r
/edx/app/xqueue/xqueue/requirements.txt (line 14))
  git clone in /edx/app/xqueue/venvs/xqueue/src/pika exists with URL
git://github.com/pika/pika.git
  The plan is to install the git repository
https://github.com/pika/pika.git
What to do?  (s)witch, (i)gnore, (w)ipe, (b)ackup
```
parent 4025190e
......@@ -41,7 +41,7 @@
- name : install python pre-requirements
pip: >
requirements="{{ xqueue_pre_requirements_file }}" virtualenv="{{ xqueue_venv_dir }}" state=present
extra_args="-i {{ COMMON_PYPI_MIRROR_URL }}"
extra_args="-i {{ COMMON_PYPI_MIRROR_URL }} --exists-action w"
sudo_user: "{{ xqueue_user }}"
notify:
- restart xqueue
......@@ -50,7 +50,7 @@
- name : install python post-requirements
pip: >
requirements="{{ xqueue_post_requirements_file }}" virtualenv="{{ xqueue_venv_dir }}" state=present
extra_args="-i {{ COMMON_PYPI_MIRROR_URL }}"
extra_args="-i {{ COMMON_PYPI_MIRROR_URL }} --exists-action w"
sudo_user: "{{ xqueue_user }}"
notify:
- restart xqueue
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment