From c885903ff2421310d6126fb0c6cdc9cfd9fbca20 Mon Sep 17 00:00:00 2001 From: Audrius Butkevicius Date: Sat, 17 Oct 2015 00:05:44 +0100 Subject: [PATCH] Change endpoint URL, as we might want to run some stats pages --- cmd/strelaypoolsrv/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/strelaypoolsrv/main.go b/cmd/strelaypoolsrv/main.go index 93811a4d..c280bce2 100644 --- a/cmd/strelaypoolsrv/main.go +++ b/cmd/strelaypoolsrv/main.go @@ -149,7 +149,7 @@ func main() { } handler := http.NewServeMux() - handler.HandleFunc("/", handleRequest) + handler.HandleFunc("/endpoint", handleRequest) srv := http.Server{ Handler: handler,