Increase HTTP read timeout from 10 to 30 minutes
This is to allow big Sprite Fright files to be uploaded over a slower-than-LAN VPN connection, for people working from home.
This commit is contained in:
@@ -1,6 +1,11 @@
|
||||
Changelog for Flamenco Manager
|
||||
==============================
|
||||
|
||||
## Version 2.7.1 (in development)
|
||||
|
||||
- Increase HTTP read timeout from 10 to 30 minutes.
|
||||
|
||||
|
||||
## Version 2.7 (2019-11-12)
|
||||
|
||||
- Update ACME/Let's Encrypt protocol to v2.
|
||||
|
||||
@@ -14,7 +14,7 @@ import (
|
||||
// Constants for the HTTP servers.
|
||||
const (
|
||||
ReadHeaderTimeout = 15 * time.Second
|
||||
ReadTimeout = 600 * time.Second
|
||||
ReadTimeout = 30 * time.Minute
|
||||
)
|
||||
|
||||
// Server acts as a http.Server
|
||||
|
||||
Reference in New Issue
Block a user