You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beam.apache.org by lg...@apache.org on 2019/03/14 15:53:29 UTC

[beam] branch master updated: [BEAM-6823] Change "triggerOnCommit" flag to "false" for CronJobs (bugfix)

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

lgajowy 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 4887726  [BEAM-6823] Change "triggerOnCommit" flag to "false" for CronJobs (bugfix)
     new 2ac5b76  Merge pull request #8055: [BEAM-6823] Change "triggerOnCommit" flag to "false" for CronJobs (bu…
4887726 is described below

commit 4887726afd58371720c822da7efe66a9ee1edea1
Author: Łukasz Gajowy <lu...@gmail.com>
AuthorDate: Thu Mar 14 11:22:20 2019 +0100

    [BEAM-6823] Change "triggerOnCommit" flag to "false" for CronJobs (bugfix)
---
 .test-infra/jenkins/CronJobBuilder.groovy | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.test-infra/jenkins/CronJobBuilder.groovy b/.test-infra/jenkins/CronJobBuilder.groovy
index bfae288..fc4be04 100644
--- a/.test-infra/jenkins/CronJobBuilder.groovy
+++ b/.test-infra/jenkins/CronJobBuilder.groovy
@@ -44,7 +44,7 @@ class CronJobBuilder {
 
   void defineAutoPostCommitJob(name, cronPattern) {
     def autoBuilds = scope.job(name) {
-      commonJobProperties.setAutoJob(delegate, cronPattern, 'builds@beam.apache.org', true, true)
+      commonJobProperties.setAutoJob(delegate, cronPattern, 'builds@beam.apache.org', false, true)
     }
 
     autoBuilds.with(jobDefinition)