Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(552)

Unified Diff: masters/master.chromium.perf/master.cfg

Issue 1831373004: Enable compression of any perf logs greater than 10 MB. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: masters/master.chromium.perf/master.cfg
diff --git a/masters/master.chromium.perf/master.cfg b/masters/master.chromium.perf/master.cfg
index d2d6f63fa5c95960ea9c291497338603de83dad2..d33311c44b1171f3293a196c2192fd477536683e 100644
--- a/masters/master.chromium.perf/master.cfg
+++ b/masters/master.chromium.perf/master.cfg
@@ -45,8 +45,8 @@ c = BuildmasterConfig = {}
# configured into the buildslaves (with their --master option)
c['slavePortnum'] = ActiveMaster.slave_port
-# Disable compression for the stdio files.
-c['logCompressionLimit'] = False
+# Enable compression for any stdio log file larger than 10 MB.
+c['logCompressionLimit'] = 1024 * 1024 * 10 # 10 MB
# Load the list of slaves.
slaves = slaves_list.SlavesList('slaves.cfg', 'ChromiumPerf')
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698