You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beam.apache.org by pa...@apache.org on 2019/03/05 17:48:23 UTC

[beam] branch pabloem-patch-1 created (now 1138763)

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

pabloem pushed a change to branch pabloem-patch-1
in repository https://gitbox.apache.org/repos/asf/beam.git.


      at 1138763  Fixing typo in LoadTestsBuilder

This branch includes the following new commits:

     new 1138763  Fixing typo in LoadTestsBuilder

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[beam] 01/01: Fixing typo in LoadTestsBuilder

Posted by pa...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

pabloem pushed a commit to branch pabloem-patch-1
in repository https://gitbox.apache.org/repos/asf/beam.git

commit 11387633506523abc621ddc84a97c917b980bae8
Author: Pablo <pa...@users.noreply.github.com>
AuthorDate: Tue Mar 5 09:48:10 2019 -0800

    Fixing typo in LoadTestsBuilder
---
 .test-infra/jenkins/LoadTestsBuilder.groovy | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/.test-infra/jenkins/LoadTestsBuilder.groovy b/.test-infra/jenkins/LoadTestsBuilder.groovy
index ae74a19..80a3060 100644
--- a/.test-infra/jenkins/LoadTestsBuilder.groovy
+++ b/.test-infra/jenkins/LoadTestsBuilder.groovy
@@ -23,8 +23,8 @@ import CommonTestProperties.SDK
 class LoadTestsBuilder {
     static void loadTest(context, String title, Runner runner, SDK sdk, Map<String, ?> options, String mainClass) {
         String task
-        if (sdk == SKD.JAVA) task = ':beam-sdks-java-load-tests:run'
-        else if (sdk == SKD.PYTHON) task = ':beam-sdks-python-load-tests:run'
+        if (sdk == SDK.JAVA) task = ':beam-sdks-java-load-tests:run'
+        else if (sdk == SDK.PYTHON) task = ':beam-sdks-python-load-tests:run'
 
         options.put('runner', runner.option)
 
@@ -44,4 +44,4 @@ class LoadTestsBuilder {
     private static String parseOptions(Map<String, ?> options) {
         options.collect { "--${it.key}=$it.value".replace('\"', '\\\"').replace('\'', '\\\'') }.join(' ')
     }
-}
\ No newline at end of file
+}