From 86138e3eb1fbaad89eb1f91937ae6bd6ba55da37 Mon Sep 17 00:00:00 2001 From: pmikus Date: Fri, 9 Dec 2022 08:50:06 +0000 Subject: feat(model): Hoststack type Signed-off-by: pmikus Change-Id: Ia7eefc28645c78ad346d294099ef6258faa9814f --- resources/tools/ab/ABFork.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'resources/tools/ab/ABFork.py') 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])} ") -- cgit 1.2.3-korg