Skip to content

Commit b0a7362

Browse files
authored
donate-cpu-server.py: do not ignore the results from 1.3.63 if they are up to date (#6928)
1 parent 4857534 commit b0a7362

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

tools/donate-cpu-server.py

+1-7
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
# Version scheme (MAJOR.MINOR.PATCH) should orientate on "Semantic Versioning" https://semver.org/
2727
# Every change in this script should result in increasing the version number accordingly (exceptions may be cosmetic
2828
# changes)
29-
SERVER_VERSION = "1.3.61"
29+
SERVER_VERSION = "1.3.62"
3030

3131
OLD_VERSION = '2.15.0'
3232

@@ -1445,9 +1445,6 @@ def server(server_address_port: int, packages: list, packageIndex: int, resultPa
14451445
if old_version_wrong:
14461446
print_ts('Unexpected old version. Ignoring result data.')
14471447
continue
1448-
if '\nclient-version: 1.3.63\n' in data:
1449-
print_ts('Client version 1.3.63 detected. Ignoring result data.')
1450-
continue
14511448
filename = os.path.join(resultPath, res.group(1))
14521449
if truncated_data:
14531450
print_ts('Data is too large. Removing result.')
@@ -1479,9 +1476,6 @@ def server(server_address_port: int, packages: list, packageIndex: int, resultPa
14791476
if pos < 10:
14801477
print_ts('Data is less than 10 characters. Ignoring information data.')
14811478
continue
1482-
if '\nclient-version: 1.3.63\n' in data:
1483-
print_ts('Client version 1.3.63 detected. Ignoring information data.')
1484-
continue
14851479
url = data[:pos]
14861480
print_ts('write_info:' + url)
14871481

0 commit comments

Comments
 (0)