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/19 15:32:28 UTC

[beam] branch master updated: [BEAM-6848] Fix incorrectly passed args to job

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 0834590  [BEAM-6848] Fix incorrectly passed args to job
     new 3504991  Merge pull request #8089: [BEAM-6848] Fix incorrectly passed args to job
0834590 is described below

commit 0834590cdc9bb1807f45f051e5feeaeae4a2b8e7
Author: Ɓukasz Gajowy <lu...@gmail.com>
AuthorDate: Tue Mar 19 14:06:54 2019 +0100

    [BEAM-6848] Fix incorrectly passed args to job
---
 .test-infra/jenkins/job_LoadTests_Java.groovy | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.test-infra/jenkins/job_LoadTests_Java.groovy b/.test-infra/jenkins/job_LoadTests_Java.groovy
index c365ba5..3f9c9f0 100644
--- a/.test-infra/jenkins/job_LoadTests_Java.groovy
+++ b/.test-infra/jenkins/job_LoadTests_Java.groovy
@@ -216,7 +216,7 @@ def loadTestJob = { scope, triggeringContext ->
 }
 
 CronJobBuilder.cronJob('beam_LoadTests_Java_GBK_Dataflow_Batch', 'H 12 * * *', this) {
-  loadTestJob(delegate, CommonTestProperties.TriggeringContext.PR)
+  loadTestJob(delegate, CommonTestProperties.TriggeringContext.POST_COMMIT)
 }
 
 PhraseTriggeringPostCommitBuilder.postCommitJob(
@@ -225,7 +225,7 @@ PhraseTriggeringPostCommitBuilder.postCommitJob(
         'Load Tests Java GBK Dataflow Batch suite',
         this
 ) {
-  loadTestJob(delegate, CommonTestProperties.TriggeringContext.POST_COMMIT)
+  loadTestJob(delegate, CommonTestProperties.TriggeringContext.PR)
 }