From 9c2b38a6cc59c89573d7d3efc419ed7d95a503c4 Mon Sep 17 00:00:00 2001 From: Vicente Ferrara Date: Mon, 22 Jul 2024 19:17:55 +0000 Subject: [PATCH] added line of code to update failure count details inside runscenario --- test/load/allocation/runscenario/runscenario.go | 1 + 1 file changed, 1 insertion(+) diff --git a/test/load/allocation/runscenario/runscenario.go b/test/load/allocation/runscenario/runscenario.go index 727bdfc93a..ad9160aee7 100644 --- a/test/load/allocation/runscenario/runscenario.go +++ b/test/load/allocation/runscenario/runscenario.go @@ -127,6 +127,7 @@ func main() { tmpVar := failureDtls[clientID][err] atomic.AddUint64(&tmpVar, 1) atomic.AddUint64(&failureCnts[clientID], 1) + failureDtls[clientID][err] = tmpVar } }() atomic.AddUint64(&allocCnts[clientID], 1)