diff options
author | pmikus <peter.mikus@protonmail.ch> | 2022-12-09 08:50:06 +0000 |
---|---|---|
committer | Peter Mikus <peter.mikus@protonmail.ch> | 2023-01-11 08:37:32 +0000 |
commit | 86138e3eb1fbaad89eb1f91937ae6bd6ba55da37 (patch) | |
tree | 16c1ae44048315cebdafd1025722df9a2f6f623f /resources/tools/ab/ABFork.py | |
parent | 89c40769ccf9558024a23a4de1563355a39db5a8 (diff) |
feat(model): Hoststack type
Signed-off-by: pmikus <peter.mikus@protonmail.ch>
Change-Id: Ia7eefc28645c78ad346d294099ef6258faa9814f
Diffstat (limited to 'resources/tools/ab/ABFork.py')
-rwxr-xr-x | resources/tools/ab/ABFork.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/resources/tools/ab/ABFork.py b/resources/tools/ab/ABFork.py index 8436ed38be..55288a9c92 100755 --- a/resources/tools/ab/ABFork.py +++ b/resources/tools/ab/ABFork.py @@ -1,5 +1,5 @@ #!/usr/bin/env python3 -# Copyright (c) 2021 Intel and/or its affiliates. +# Copyright (c) 2023 Intel and/or its affiliates. # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at: @@ -136,7 +136,7 @@ def main(): # Output results. print(f"Transfer Rate: {round(info_list[6], 2)} [Kbytes/sec]") print(f"Latency: {round(info_list[4] / 8, 2)} ms") - print(f"Connection {mode} rate:{round(info_list[3], 2)} per sec") + print(f"Connection {mode} rate: {round(info_list[3], 2)} per sec") print(f"Total data transferred: {round(info_list[2])} bytes") print(f"Completed requests: {round(info_list[0])} ") print(f"Failed requests: {round(info_list[1])} ") |