Add directive to configure timeout on the appServer (#2275)

* docs: Add requestimeout bump to example configuration

* docs: Add reference to akka docs
This commit is contained in:
Chris Stewart 2020-11-23 16:03:13 -06:00 committed by GitHub
parent a5a8a7b101
commit 6c1992c116

View File

@ -211,6 +211,13 @@ akka {
# some requests potentially take a long time, like generate and prune
idle-timeout = 5 minutes
}
server {
# The amount of time until a request times out on the server
# If you have a large payload this may need to be bumped
# https://doc.akka.io/docs/akka-http/current/common/timeouts.html#request-timeout
request-timeout = 10s
}
}