mirror of
https://github.com/minio/minio.git
synced 2024-12-24 22:25:54 -05:00
perf net: Add the endpoint name related to the perf net error (#18063)
In a perf test, one node will run speed test with all nodes. If there is an error with a peer node, the peer node name is not included in the error hence confusing the user. This commit will add the peer endpoint string to the netperf error.
This commit is contained in:
parent
3cac927348
commit
69c0e18685
@ -306,7 +306,7 @@ func netperf(ctx context.Context, duration time.Duration) madmin.NetperfNodeResu
|
|||||||
defer wg.Done()
|
defer wg.Done()
|
||||||
err := globalNotificationSys.peerClients[index].DevNull(ctx, r)
|
err := globalNotificationSys.peerClients[index].DevNull(ctx, r)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
errStr = err.Error()
|
errStr = fmt.Sprintf("error with %s: %s", globalNotificationSys.peerClients[index].String(), err.Error())
|
||||||
}
|
}
|
||||||
}()
|
}()
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user