summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index 3f8c5ff..d95a7e4 100644
--- a/README.md
+++ b/README.md
@@ -102,9 +102,9 @@ session = CachedSession(
expire_after=timedelta(days=1), # Otherwise expire responses after one day
allowable_methods=['GET', 'POST'] # Cache POST requests to avoid sending the same data twice
allowable_codes=[200, 400] # Cache 400 responses as a solemn reminder of your failures
- match_headers=True, # Match all request headers
ignored_parameters=['api_key'], # Don't match this param or save it in the cache
- old_data_on_error=True, # In case of request errors, use stale cache data if possible
+ match_headers=True, # Match all request headers
+ stale_if_error=True, # In case of request errors, use stale cache data if possible
)
```