feat(api_call): before returning check if cached file exists

!8
This commit is contained in:
2024-02-22 15:25:05 +09:30
parent a2444087a8
commit 785ae77510

View File

@ -110,3 +110,8 @@
not cached_file.stat.exists
and
api_call.status | default(0) | int != 404
- name: check Cache Files
ansible.builtin.stat:
path: "{{ cache_filepath }}"
register: cached_file