You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The sentBytes and recvBytes fields on ReportListener.Report are set by ReportListener.onComplete by using the ConnectionStatistics instance.
However at the time onComplete is called the ConnectionStatistics has not been updated.
I can see at the time ReportListener.onComplete is called that both sentBytes and recvBytes are 0.
And then after I wait for reportListener.whenComplete().join() I can manually inspect the ConnectionStatistics and it has correct values (bytes in/out=2264849/2579828).
The text was updated successfully, but these errors were encountered:
@sbordet I understand that, I'm not saying we need live connection statistics for this, but there is probably some race where ReportListener is trying to get the stats before the connection is closed.
@sbordet I confimed that ReportListener#onComplete(LoadGenerator generator) is called before any of the connections are closed with ReportListener#onClosed(Connection).
The
sentBytes
andrecvBytes
fields onReportListener.Report
are set byReportListener.onComplete
by using theConnectionStatistics
instance.However at the time
onComplete
is called theConnectionStatistics
has not been updated.I can see at the time
ReportListener.onComplete
is called that bothsentBytes
andrecvBytes
are 0.And then after I wait for
reportListener.whenComplete().join()
I can manually inspect theConnectionStatistics
and it has correct values (bytes in/out=2264849/2579828
).The text was updated successfully, but these errors were encountered: