Skip to content

Commit ce29856

Browse files
authored
Merge pull request #337 from ligangty/main
Chore: some little adjustments
2 parents 1dc15a6 + cb22011 commit ce29856

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

charon/cache.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,8 +86,8 @@ def invalidate_paths(
8686
The default value is 3000 which is the maximum number in official doc:
8787
https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/Invalidation.html#InvalidationLimits
8888
"""
89-
INPRO_W_SECS = 5
90-
NEXT_W_SECS = 1
89+
INPRO_W_SECS = 10
90+
NEXT_W_SECS = 2
9191
real_paths = [paths]
9292
# Split paths into batches by batch_size
9393
if batch_size:

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ dev = [
5252
test = [
5353
"flexmock>=0.10.6",
5454
"responses>=0.9.0",
55-
"pytest<=7.1.3",
55+
"pytest<=8.4.1",
5656
"pytest-cov",
5757
"pytest-html",
5858
"requests-mock",

tests/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
flexmock>=0.10.6
22
responses>=0.9.0
3-
pytest<=7.1.3
3+
pytest<=8.4.1
44
pytest-cov
55
pytest-html
66
requests-mock

0 commit comments

Comments
 (0)