Skip to content

Commit e5e7d63

Browse files
sfc-gh-stakedaankit-bhatnagar167
authored andcommitted
SNOW-80719 Update OCSP Cache Expiration to 5 days
1 parent 4392660 commit e5e7d63

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/test_ocsp.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,7 @@ def test_ocsp_with_outdated_cache(tmpdir):
259259
# setting outdated data
260260
current_time = int(time.time())
261261
for k, v in cache_data.items():
262-
cache_data[k] = (current_time - 48 * 60 * 60, v[1])
262+
cache_data[k] = (current_time - 144 * 60 * 60, v[1])
263263

264264
# write back the cache file
265265
OCSPCache.CACHE = cache_data

0 commit comments

Comments
 (0)