What’s the best way to disable local cache? Common...
# flyte-support
c
What’s the best way to disable local cache? Common use case for this is for running tests with the cache off (for the entire duration of the cache) So far I am patching
LocalConfig.cache_enabled=False
in the tests (code ref) but wanted to check if there is a better way.
1
a
you could export the
FLYTE_LOCAL_CACHE_ENABLED
envvar and set it to
False
c
Nice, ty!!