From 25d5cb337d988bf392005d5080361849d01ee1f1 Mon Sep 17 00:00:00 2001 From: Derek Collison Date: Wed, 11 Sep 2019 17:30:01 -0700 Subject: [PATCH] Make json tags consistent Signed-off-by: Derek Collison --- server/accounts.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/accounts.go b/server/accounts.go index da6df407..437b548c 100644 --- a/server/accounts.go +++ b/server/accounts.go @@ -510,7 +510,7 @@ func (a *Account) IsExportServiceTracking(service string) bool { // NATSLatency represents the internal NATS latencies, including RTTs to clients. type NATSLatency struct { - Requestor time.Duration `json:"request_rtt"` + Requestor time.Duration `json:"requestor_rtt"` Responder time.Duration `json:"responder_rtt"` System time.Duration `json:"system_latency"` }