diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2024-10-28 17:16:47 +0200 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2024-10-28 17:16:47 +0200 |
commit | 144aeccfdcb12af2477a159bd57b67b85b2acddf (patch) | |
tree | 0e74709cf617125467c3601a2a764bee9ed727d4 | |
parent | be43097c383845fe5cfd63295d58de0a2837f456 (diff) |
Increase task execution log size limit from 10MB to 15MB in worker
-rw-r--r-- | bbot/worker/worker.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bbot/worker/worker.cxx b/bbot/worker/worker.cxx index fae83b9..810797b 100644 --- a/bbot/worker/worker.cxx +++ b/bbot/worker/worker.cxx @@ -6112,7 +6112,7 @@ build (size_t argc, const char* argv[]) // @@ TMP: currently this limit is hard-coded. In the future it should be // sent along with the task manifest. // - const size_t upload_limit (10 * 1024 * 1024); + const size_t upload_limit (15 * 1024 * 1024); { // Reserve 10K for other manifest values (alternatively, we could do it // exactly in upload_manifest()). |