You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beam.apache.org by lc...@apache.org on 2020/01/21 22:14:57 UTC

[beam] branch master updated: [BEAM-9151] Fix misconfigured legacy dataflow tests.

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

lcwik 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 f99c7d0  [BEAM-9151] Fix misconfigured legacy dataflow tests.
     new bfec592  Merge pull request #10635 from boyuanzz/fix
f99c7d0 is described below

commit f99c7d0a3ef55161797d6d00c7acf3a67ae0ee6e
Author: Boyuan Zhang <bo...@google.com>
AuthorDate: Fri Jan 17 16:08:35 2020 -0800

    [BEAM-9151] Fix misconfigured legacy dataflow tests.
---
 runners/google-cloud-dataflow-java/examples/build.gradle | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/runners/google-cloud-dataflow-java/examples/build.gradle b/runners/google-cloud-dataflow-java/examples/build.gradle
index 8054488..aabb0d2 100644
--- a/runners/google-cloud-dataflow-java/examples/build.gradle
+++ b/runners/google-cloud-dataflow-java/examples/build.gradle
@@ -56,7 +56,7 @@ def commonConfig = { dataflowWorkerJar, workerHarnessContainerImage = '', additi
                "--tempRoot=${gcsTempRoot}",
                "--runner=TestDataflowRunner",
                "--dataflowWorkerJar=${dataflowWorkerJar}",
-               workerHarnessContainerImage.isEmpty() ?'':"--workerHarnessContainerImage=${workerHarnessContainerImage}"
+               "--workerHarnessContainerImage=${workerHarnessContainerImage}"
                ] + additionalOptions
        systemProperty "beamTestPipelineOptions", JsonOutput.toJson(preCommitBeamTestPipelineOptions)
      }