Merge "Set timeouts on uri tasks"
This commit is contained in:
commit
162acd2817
@ -21,6 +21,7 @@
|
|||||||
uri:
|
uri:
|
||||||
url: "{{ pip_upstream_url }}"
|
url: "{{ pip_upstream_url }}"
|
||||||
method: "HEAD"
|
method: "HEAD"
|
||||||
|
timeout: 3
|
||||||
register: _repo_data_check
|
register: _repo_data_check
|
||||||
failed_when: false
|
failed_when: false
|
||||||
when: pip_upstream_url != "https://bootstrap.pypa.io/get-pip.py"
|
when: pip_upstream_url != "https://bootstrap.pypa.io/get-pip.py"
|
||||||
|
@ -22,6 +22,7 @@
|
|||||||
uri:
|
uri:
|
||||||
url: "{{ pip_install_upper_constraints }}"
|
url: "{{ pip_install_upper_constraints }}"
|
||||||
method: "HEAD"
|
method: "HEAD"
|
||||||
|
timeout: 3
|
||||||
register: upper_constraints_check
|
register: upper_constraints_check
|
||||||
failed_when: false
|
failed_when: false
|
||||||
tags:
|
tags:
|
||||||
@ -31,6 +32,7 @@
|
|||||||
uri:
|
uri:
|
||||||
url: "{{ pip_default_index }}"
|
url: "{{ pip_default_index }}"
|
||||||
method: "HEAD"
|
method: "HEAD"
|
||||||
|
timeout: 3
|
||||||
register: pip_default_index_check
|
register: pip_default_index_check
|
||||||
failed_when: false
|
failed_when: false
|
||||||
tags:
|
tags:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user