You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beam.apache.org by mw...@apache.org on 2020/06/18 07:10:02 UTC

[beam] branch master updated: [BEAM-9758] Fix string interpolation in echo statements.

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

mwalenia 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 f160c69  [BEAM-9758] Fix string interpolation in echo statements.
     new 737394f  Merge pull request #12021 from ibzib/BEAM-9758
f160c69 is described below

commit f160c69beeb6c822ea45d837b3af53b6da913e54
Author: Kyle Weaver <kc...@google.com>
AuthorDate: Tue Jun 16 12:51:51 2020 -0700

    [BEAM-9758] Fix string interpolation in echo statements.
---
 .test-infra/jenkins/LoadTestsBuilder.groovy | 2 +-
 .test-infra/jenkins/NexmarkBuilder.groovy   | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/.test-infra/jenkins/LoadTestsBuilder.groovy b/.test-infra/jenkins/LoadTestsBuilder.groovy
index 46cbb8c..b3d4c02 100644
--- a/.test-infra/jenkins/LoadTestsBuilder.groovy
+++ b/.test-infra/jenkins/LoadTestsBuilder.groovy
@@ -43,7 +43,7 @@ class LoadTestsBuilder {
     InfluxDBCredentialsHelper.useCredentials(context)
 
     context.steps {
-      shell('echo "*** ${title} ***"')
+      shell("echo \"*** ${title} ***\"")
       gradle {
         rootBuildScriptDir(commonJobProperties.checkoutDir)
         setGradleTask(delegate, runner, sdk, options, mainClass, withDataflowWorkerJar)
diff --git a/.test-infra/jenkins/NexmarkBuilder.groovy b/.test-infra/jenkins/NexmarkBuilder.groovy
index fec468f..de4bb33 100644
--- a/.test-infra/jenkins/NexmarkBuilder.groovy
+++ b/.test-infra/jenkins/NexmarkBuilder.groovy
@@ -74,7 +74,7 @@ class NexmarkBuilder {
 
   static void suite(context, String title, Runner runner, SDK sdk, Map<String, Object> options) {
     context.steps {
-      shell('echo "*** RUN ${title} ***"')
+      shell("echo \"*** RUN ${title} ***\"")
       gradle {
         rootBuildScriptDir(commonJobProperties.checkoutDir)
         tasks(':sdks:java:testing:nexmark:run')