diff --git a/nodes/node_balancer/cmd/middleware.go b/nodes/node_balancer/cmd/middleware.go index 2bff690f..73d2c862 100644 --- a/nodes/node_balancer/cmd/middleware.go +++ b/nodes/node_balancer/cmd/middleware.go @@ -130,7 +130,7 @@ func accessMiddleware(next http.Handler) http.Handler { dataSource := extractDataSource(r) if accessID == "" { - http.Error(w, "No authorization header passed with request", http.StatusForbidden) + http.Error(w, "No access id passed with request", http.StatusForbidden) return }