We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ba9e24e commit e3822cdCopy full SHA for e3822cd
backend/src/openarchiefbeheer/conf/base.py
@@ -389,8 +389,9 @@
389
390
RELEASE = config("RELEASE", GIT_SHA)
391
392
+REQUESTS_READ_TIMEOUT = config("REQUESTS_READ_TIMEOUT", 30)
393
# Default (connection timeout, read timeout) for the requests library (in seconds)
-REQUESTS_DEFAULT_TIMEOUT = (10, 30)
394
+REQUESTS_DEFAULT_TIMEOUT = (10, REQUESTS_READ_TIMEOUT)
395
396
##############################
397
# #
0 commit comments