From 30ae4efa87af490f699913a97c44119046185efa Mon Sep 17 00:00:00 2001 From: Daniel Swarbrick Date: Tue, 19 Mar 2024 01:29:47 +0100 Subject: [PATCH] Rename potentially ambiguous log message field --- infiniband/netdiscover.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/infiniband/netdiscover.go b/infiniband/netdiscover.go index 10697fb..90458eb 100644 --- a/infiniband/netdiscover.go +++ b/infiniband/netdiscover.go @@ -98,9 +98,9 @@ func (h *HCA) NetDiscover(output chan Fabric, mkey uint64, resetThreshold uint) } log.WithFields(log.Fields{ - "time": time.Since(start), - "nodes": totalNodes, - "ports": totalPorts}, + "duration": time.Since(start), + "nodes": totalNodes, + "ports": totalPorts}, ).Info("NetDiscover completed") }