Skip to content

Commit d1b3a03

Browse files
committed
Increase max parts to 15 & caching time to 60 days
1 parent 263453b commit d1b3a03

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515
app = Flask(__name__)
1616
app.wsgi_app = ProxyFix(app.wsgi_app, x_proto=1, x_host=1)
1717

18-
PARTS_MAX_COUNT = 10
19-
PARTS_CACHE_MAX_AGE = 30*24*3600 # 30 days due to quota limits
18+
PARTS_MAX_COUNT = 15
19+
PARTS_CACHE_MAX_AGE = 60*24*3600 # 60 days due to quota limits
2020
PARTS_QUERY_TIMEOUT = 8.0
2121

2222

0 commit comments

Comments
 (0)