diff options
| author | Stefan Boberg <[email protected]> | 2023-03-30 14:35:48 +0200 |
|---|---|---|
| committer | Stefan Boberg <[email protected]> | 2023-03-30 14:35:48 +0200 |
| commit | f55f4490b98a70ac91ff372b8bc574562a470ee1 (patch) | |
| tree | 05f1107f49b4500fa3e91826c36bf5347966879e | |
| parent | Use ReadPayloadObject to read POST payload (diff) | |
| download | zen-f55f4490b98a70ac91ff372b8bc574562a470ee1.tar.xz zen-f55f4490b98a70ac91ff372b8bc574562a470ee1.zip | |
minor: spelling
| -rw-r--r-- | zen/cmds/rpcreplay.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/zen/cmds/rpcreplay.cpp b/zen/cmds/rpcreplay.cpp index e28c27e2d..90edb949d 100644 --- a/zen/cmds/rpcreplay.cpp +++ b/zen/cmds/rpcreplay.cpp @@ -402,7 +402,7 @@ RpcReplayCommand::Run(const ZenCliOptions& GlobalOptions, int argc, char** argv) const uint64_t SentPerS = static_cast<uint64_t>(Sent / ElapsedS); const uint64_t ReceivedPerS = static_cast<uint64_t>(Received / ElapsedS); - ZEN_CONSOLE("Requests sent {} ({}/s), payloads sent {}B ({}B/s), payloads recevied {}B ({}B/s) in {}", + ZEN_CONSOLE("Requests sent {} ({}/s), payloads sent {}B ({}B/s), payloads received {}B ({}B/s) in {}", RequestsSent, RequestsPerS, NiceBytes(Sent), |