Skip to content
Snippets Groups Projects
Commit fb30f659 authored by Yorgos Saslis's avatar Yorgos Saslis Committed by Matthew Mosesohn
Browse files

Add option for fact cache expiry (#1602)

* Add option for fact cache expiry 

By adding the `fact_caching_timeout` we avoid having really stale/invalid data ending up in there. 
Leaving commented out by default, for backwards compatibility, but nice to have there.

* Enabled cache-expiry by default

Set to 2 hours and modified comment to reflect change
parent a47aaae0
No related branches found
No related tags found
No related merge requests found
...@@ -7,6 +7,9 @@ host_key_checking=False ...@@ -7,6 +7,9 @@ host_key_checking=False
gathering = smart gathering = smart
fact_caching = jsonfile fact_caching = jsonfile
fact_caching_connection = /tmp fact_caching_connection = /tmp
# Once created, fact cache is never force updated. This is why the tiemeout exists. If you're still getting
# stale data in your runs (e.g. stale `etcd_access_addresses`), you might want to use `--flush-cache`.
fact_caching_timeout = 7200 # 2 hours
stdout_callback = skippy stdout_callback = skippy
library = ./library library = ./library
callback_whitelist = profile_tasks callback_whitelist = profile_tasks
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment