From e35d4af4679c3a2e782afe29813fca88484e3e19 Mon Sep 17 00:00:00 2001 From: Paul Taylor <21125224+bao7uo@users.noreply.github.com> Date: Fri, 6 Nov 2020 12:04:42 +0000 Subject: [PATCH 1/2] Fix internal host notification Changed notification to config.Server.Host to match what is happening on line 55 --- server/http.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/http.go b/server/http.go index f9dde1e..a7c9e79 100644 --- a/server/http.go +++ b/server/http.go @@ -16,7 +16,7 @@ func StartIntServer(config model.Config) { // Start the update token function go api.RecursiveTokenUpdate() - log.Printf("Starting Internal Server on 127.0.0.1:%d \n", config.Server.InternalPort) + log.Printf("Starting Internal Server on %s:%d \n", config.Server.Host, config.Server.InternalPort) route := mux.NewRouter() From e911eb24f7bfdedda73af44abbe984c605351f10 Mon Sep 17 00:00:00 2001 From: Paul Taylor <21125224+bao7uo@users.noreply.github.com> Date: Fri, 6 Nov 2020 12:09:23 +0000 Subject: [PATCH 2/2] Update http.go --- server/http.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/http.go b/server/http.go index a7c9e79..e237768 100644 --- a/server/http.go +++ b/server/http.go @@ -16,7 +16,7 @@ func StartIntServer(config model.Config) { // Start the update token function go api.RecursiveTokenUpdate() - log.Printf("Starting Internal Server on %s:%d \n", config.Server.Host, config.Server.InternalPort) + log.Printf("Starting Internal Server on %s:%d \n", config.Server.Host, config.Server.InternalPort) route := mux.NewRouter()