From 55a3ed7187140e360e5a0e525f9a577dcb4579b2 Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Fri, 7 Feb 2025 04:40:52 -0600 Subject: [PATCH] func name change --- Makefile | 2 +- http.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index d634a52..a33cdb0 100644 --- a/Makefile +++ b/Makefile @@ -11,7 +11,7 @@ check_files: @echo the build is complicated right now because you need @echo the google version of protoc-gen-go which is not the one in debian sid yet @echo - @if [ -f "/usr/bin/bin/protoc-gen-go" ]; then \ + @if [ -f "/usr/bin/protoc-gen-go" ]; then \ echo "the protoc-gen-go package is old in debian sid right now"; \ echo "for now, remove it"; \ apt remote proto-gen-go \ diff --git a/http.go b/http.go index 6241d7e..8249d52 100644 --- a/http.go +++ b/http.go @@ -105,7 +105,7 @@ func okHandler(w http.ResponseWriter, r *http.Request) { // toggle poll logging if route == "/poll" { - if POLL.Get() { + if POLL.Enabled() { log.Info("POLL is true") POLL.SetBool(false) } else {