We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2c48341 commit 917ca61Copy full SHA for 917ca61
usage_scenario.yml
@@ -53,6 +53,11 @@ flow:
53
command: wget --recursive --spider --no-directories http://app:8000/ -o warmup.log
54
note: Warming the cache
55
read-notes-stdout: False
56
+ # wget issues an error code 8 due to some images returning 404. We could catch the code 8 specifically, but
57
+ # it would not tell us if these are the known images or some other problems with the sever occured.
58
+ # Sadly this call is very flaky and might still show up as successful even if cache warmup did not really work :(
59
+ # PRs welcome!
60
+ ignore-errors: True
61
62
63
- name: Blog filtering
0 commit comments