From 2b6d599f1eac0df924b81d1299537a349ae7b44a Mon Sep 17 00:00:00 2001 From: IOBYTE Date: Fri, 5 Apr 2019 08:11:03 -0400 Subject: [PATCH] donate-cpu.py: show size of results sent to server (#1784) --- tools/donate-cpu.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tools/donate-cpu.py b/tools/donate-cpu.py index da7148658..0f84fb7f1 100644 --- a/tools/donate-cpu.py +++ b/tools/donate-cpu.py @@ -40,7 +40,7 @@ import platform # Version scheme (MAJOR.MINOR.PATCH) should orientate on "Semantic Versioning" https://semver.org/ # Every change in this script should result in increasing the version number accordingly (exceptions may be cosmetic # changes) -CLIENT_VERSION = "1.1.21" +CLIENT_VERSION = "1.1.22" def checkRequirements(): @@ -377,7 +377,7 @@ def sendAll(connection, data): def uploadResults(package, results, server_address): - print('Uploading results..') + print('Uploading results.. ' + str(len(results)) + ' bytes') max_retries = 4 for retry in range(max_retries): try: @@ -398,7 +398,7 @@ def uploadResults(package, results, server_address): def uploadInfo(package, info_output, server_address): - print('Uploading information output..') + print('Uploading information output.. ' + str(len(info_output)) + ' bytes') max_retries = 3 for retry in range(max_retries): try: