Skip to content

Commit

Permalink
Fix #13027 (daca@home larger result data must be uploaded in chunks)
Browse files Browse the repository at this point in the history
  • Loading branch information
danmar committed Aug 18, 2024
1 parent 9aa63a7 commit 7789b44
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tools/donate-cpu-server.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
# 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)
SERVER_VERSION = "1.3.55"
SERVER_VERSION = "1.3.56"

OLD_VERSION = '2.14.0'

Expand Down Expand Up @@ -1334,7 +1334,7 @@ def server(server_address_port: int, packages: list, packageIndex: int, resultPa
continue
elif cmd.startswith('write\nftp://') or cmd.startswith('write\nhttp://'):
t_start = time.perf_counter()
data = read_data(connection, cmd, pos_nl, max_data_size=2.5 * 1024 * 1024, check_done=True, cmd_name='write')
data = read_data(connection, cmd, pos_nl, max_data_size=10 * 1024 * 1024, check_done=True, cmd_name='write')
if data is None:
continue

Expand Down

0 comments on commit 7789b44

Please sign in to comment.