Skip to content

Commit

Permalink
[ansible/venv] Fix retry and add delay
Browse files Browse the repository at this point in the history
  • Loading branch information
goldyfruit committed Jun 28, 2024
1 parent c67a909 commit b9b9c02
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion ansible/roles/ovos_installer/tasks/virtualenv/venv.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,9 @@
extra_args: "{{ _pip_args }}"
state: latest
register: _ovos_install_venv
until: _ovos_install_venv is success
retries: 5
until: _ovos_install_venv | success
delay: 5
loop:
- {
"file": "/tmp/core-requirements.txt",
Expand Down

0 comments on commit b9b9c02

Please sign in to comment.