From 07435d0597aad2d6959497b95228ab7701561b68 Mon Sep 17 00:00:00 2001 From: Michael Shaw Date: Thu, 26 Jan 2023 16:59:27 -0500 Subject: [PATCH] trying localhost --- gql/server.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gql/server.go b/gql/server.go index ef39cc67..b865c58a 100644 --- a/gql/server.go +++ b/gql/server.go @@ -49,7 +49,7 @@ func Server(ctx client.Context) { router.Handle("/graphql", srv) log.Info("Connect to GraphQL playground", "url", fmt.Sprintf("http://localhost:%s", port)) - err := http.ListenAndServe("0.0.0.0:"+port, router) //nolint: all + err := http.ListenAndServe("localhost:"+port, router) //nolint: all if err != nil { panic(err) }