aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/http/server.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/http/server.go b/lib/http/server.go
index bbd1cf3e..7a52f2fb 100644
--- a/lib/http/server.go
+++ b/lib/http/server.go
@@ -33,6 +33,8 @@ const (
type Server struct {
*http.Server
+ shutdownIdleTimer *time.Timer
+
evals []Evaluator
routeDeletes []*route
routeGets []*route
@@ -46,8 +48,6 @@ type Server struct {
// Modifying the value of Options after server has been started may
// cause undefined effects.
Options ServerOptions
-
- shutdownIdleTimer *time.Timer
}
// NewServer create and initialize new HTTP server that serve root directory