Skip to content

Commit

Permalink
[download] Don't fail on 304 Not Modified (#10452) (#10559)
Browse files Browse the repository at this point in the history
i.e when file was not modified since last download

Co-authored-by: Mathieu Parent <mathieu.parent@insee.fr>
  • Loading branch information
RomainMou and sathieu committed Oct 30, 2023
1 parent 8775dcf commit 10679eb
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion roles/download/tasks/download_file.yml
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,9 @@
run_once: "{{ download_force_cache }}"
register: get_url_result
become: "{{ not download_localhost }}"
until: "'OK' in get_url_result.msg or 'file already exists' in get_url_result.msg"
until: "'OK' in get_url_result.msg or
'file already exists' in get_url_result.msg or
get_url_result.status_code == 304"
retries: "{{ download_retries }}"
delay: "{{ retry_stagger | default(5) }}"
environment: "{{ proxy_env }}"
Expand Down

0 comments on commit 10679eb

Please sign in to comment.