aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2024-10-28 17:16:47 +0200
committerKaren Arutyunov <karen@codesynthesis.com>2024-10-28 17:16:47 +0200
commit144aeccfdcb12af2477a159bd57b67b85b2acddf (patch)
tree0e74709cf617125467c3601a2a764bee9ed727d4
parentbe43097c383845fe5cfd63295d58de0a2837f456 (diff)
Increase task execution log size limit from 10MB to 15MB in worker
-rw-r--r--bbot/worker/worker.cxx2
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()).