fix(server): remove global server timeouts

This commit is contained in:
Nicolas Carlier 2018-03-21 14:08:00 +00:00 committed by Nicolas Carlier
parent 34f0f64d68
commit 82346b08da

View File

@ -55,12 +55,9 @@ func main() {
}
server := &http.Server{
Addr: *listenAddr,
Handler: tracing(nextRequestID)(logging(logger.Debug)(router)),
ErrorLog: logger.Error,
ReadTimeout: 5 * time.Second,
WriteTimeout: 10 * time.Second,
IdleTimeout: 15 * time.Second,
Addr: *listenAddr,
Handler: tracing(nextRequestID)(logging(logger.Debug)(router)),
ErrorLog: logger.Error,
}
// Start the dispatcher.