From 55b53a127b6937d66a40084e9f7383a3762ea7f5 Mon Sep 17 00:00:00 2001 From: Adam Tucker Date: Sun, 14 Jan 2024 15:19:17 -0700 Subject: [PATCH] remove quotes --- server/config/toml.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/config/toml.go b/server/config/toml.go index 5a560ccff51b..ec84f4347da1 100644 --- a/server/config/toml.go +++ b/server/config/toml.go @@ -210,7 +210,7 @@ max-send-msg-size = "{{ .GRPC.MaxSendMsgSize }}" # LogQueries if enabled will print an info log containing the query request # that was submitted to this node on every submission. # This is useful strictly for debugging purposes and should be disabled otherwise. -log-queries = "{{ .GRPC.LogQueries }}" +log-queries = {{ .GRPC.LogQueries }} ############################################################################### ### gRPC Web Configuration ###