Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions charon/cache.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,8 +86,8 @@ def invalidate_paths(
The default value is 3000 which is the maximum number in official doc:
https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/Invalidation.html#InvalidationLimits
"""
INPRO_W_SECS = 5
NEXT_W_SECS = 1
INPRO_W_SECS = 10
NEXT_W_SECS = 2
real_paths = [paths]
# Split paths into batches by batch_size
if batch_size:
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ dev = [
test = [
"flexmock>=0.10.6",
"responses>=0.9.0",
"pytest<=7.1.3",
"pytest<=8.4.1",
"pytest-cov",
"pytest-html",
"requests-mock",
Expand Down
2 changes: 1 addition & 1 deletion tests/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
flexmock>=0.10.6
responses>=0.9.0
pytest<=7.1.3
pytest<=8.4.1
pytest-cov
pytest-html
requests-mock
Expand Down