You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beam.apache.org by yh...@apache.org on 2023/10/31 16:25:38 UTC

(beam) branch master updated: Inventory - Update temp files retention to 24h, run more frequently (#29216)

This is an automated email from the ASF dual-hosted git repository.

yhu pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/beam.git


The following commit(s) were added to refs/heads/master by this push:
     new e8849a424e7 Inventory - Update temp files retention to 24h, run more frequently (#29216)
e8849a424e7 is described below

commit e8849a424e72c8cd1a7cc641cd7bb5d8e17c5783
Author: Bruno Volpato <bv...@google.com>
AuthorDate: Tue Oct 31 12:25:31 2023 -0400

    Inventory - Update temp files retention to 24h, run more frequently (#29216)
---
 .test-infra/jenkins/job_Inventory.groovy | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.test-infra/jenkins/job_Inventory.groovy b/.test-infra/jenkins/job_Inventory.groovy
index 4723dfdf97e..e115603d0d4 100644
--- a/.test-infra/jenkins/job_Inventory.groovy
+++ b/.test-infra/jenkins/job_Inventory.groovy
@@ -32,7 +32,7 @@ nums.each {
     commonJobProperties.setTopLevelMainJobProperties(delegate)
 
     // Sets that this is a cron job.
-    commonJobProperties.setCronJob(delegate, '45 6,18 * * *')
+    commonJobProperties.setCronJob(delegate, '45 */8 * * *')
 
     // Allows triggering this build against pull requests.
     commonJobProperties.enablePhraseTriggeringFromPullRequest(
@@ -50,7 +50,7 @@ nums.each {
       }
       stringParam {
         name("tmp_unaccessed_for")
-        defaultValue("48")
+        defaultValue("24")
         description("Files from /tmp dir that were not accessed for last `tmp_unaccessed_for` hours will be deleted.")
         trim(true)
       }