Title: [276199] trunk/Tools
Revision
276199
Author
[email protected]
Date
2021-04-17 05:20:32 -0700 (Sat, 17 Apr 2021)

Log Message

Do not configure Janitor to delete old logs in local testing mode
https://bugs.webkit.org/show_bug.cgi?id=224552

Reviewed by Jonathan Bedard.

* CISupport/build-webkit-org/master_buildbot2.cfg:
* CISupport/ews-build/master.cfg:

Modified Paths

Diff

Modified: trunk/Tools/CISupport/build-webkit-org/master_buildbot2.cfg (276198 => 276199)


--- trunk/Tools/CISupport/build-webkit-org/master_buildbot2.cfg	2021-04-17 12:08:32 UTC (rev 276198)
+++ trunk/Tools/CISupport/build-webkit-org/master_buildbot2.cfg	2021-04-17 12:20:32 UTC (rev 276199)
@@ -61,12 +61,11 @@
         sys.exit(1)
     # See https://docs.buildbot.net/2.10.0/manual/configuration/global.html#database-specification
     c['db_url'] = 'postgresql://{}:{}@{}/{}'.format(db_username, db_password, db_url, db_name)
+    # configure a janitor to delete old logs
+    c['configurators'] = [util.JanitorConfigurator(logHorizon=timedelta(weeks=26), hour='1', dayOfWeek='*')]
 
 c['buildCacheSize'] = 60
 c['logCompressionMethod'] = 'lz4'
 c['buildbotNetUsageData'] = None
 
-# configure a janitor to delete old logs
-c['configurators'] = [util.JanitorConfigurator(logHorizon=timedelta(weeks=26), hour='1', dayOfWeek='*')]
-
 loadBuilderConfig(c, is_test_mode_enabled=is_test_mode_enabled)

Modified: trunk/Tools/CISupport/ews-build/master.cfg (276198 => 276199)


--- trunk/Tools/CISupport/ews-build/master.cfg	2021-04-17 12:08:32 UTC (rev 276198)
+++ trunk/Tools/CISupport/ews-build/master.cfg	2021-04-17 12:20:32 UTC (rev 276199)
@@ -63,13 +63,12 @@
         sys.exit(1)
     # See https://docs.buildbot.net/1.7.0/manual/configuration/global.html#database-specification
     c['db_url'] = 'postgresql://{}:{}@{}/{}'.format(db_username, db_password, db_url, db_name)
+    # configure a janitor to delete old logs
+    c['configurators'] = [util.JanitorConfigurator(logHorizon=timedelta(weeks=52), hour='1', dayOfWeek='*')]
 
 c['logCompressionMethod'] = 'lz4'
 c['buildbotNetUsageData'] = None
 
-# configure a janitor to delete old logs
-c['configurators'] = [util.JanitorConfigurator(logHorizon=timedelta(weeks=52), hour='1', dayOfWeek='*')]
-
 loadConfig.loadBuilderConfig(c, is_test_mode_enabled=is_test_mode_enabled)
 
 mail_notifier = reporters.MailNotifier(

Modified: trunk/Tools/ChangeLog (276198 => 276199)


--- trunk/Tools/ChangeLog	2021-04-17 12:08:32 UTC (rev 276198)
+++ trunk/Tools/ChangeLog	2021-04-17 12:20:32 UTC (rev 276199)
@@ -1,3 +1,13 @@
+2021-04-17  Aakash Jain  <[email protected]>
+
+        Do not configure Janitor to delete old logs in local testing mode
+        https://bugs.webkit.org/show_bug.cgi?id=224552
+
+        Reviewed by Jonathan Bedard.
+
+        * CISupport/build-webkit-org/master_buildbot2.cfg:
+        * CISupport/ews-build/master.cfg:
+
 2021-04-16  Lauro Moura  <[email protected]>
 
         REGRESSION(r276164) [GTK] WKPreferencesDefaults API test is failing
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to