From 56570a65cb5eb0c458d6865883418e7e00ff7443 Mon Sep 17 00:00:00 2001 From: Donal Hurley Date: Thu, 11 Jul 2024 18:47:17 +0100 Subject: [PATCH] Update keepalive field for http upstreams (#311) * fix: update keepalive field for http upstreams --------- Co-authored-by: Donal Hurley Co-authored-by: Venktesh Shivam Patel --- client/nginx.go | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/client/nginx.go b/client/nginx.go index 1c375c16..87503eca 100644 --- a/client/nginx.go +++ b/client/nginx.go @@ -358,11 +358,11 @@ type Upstreams map[string]Upstream // Upstream represents upstream related stats. type Upstream struct { - Zone string - Peers []Peer - Queue Queue - Keepalives int - Zombies int + Zone string + Peers []Peer + Queue Queue + Keepalive int + Zombies int } // StreamUpstreams is a map of stream upstream stats by upstream name.