You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beam.apache.org by ib...@apache.org on 2020/04/13 22:05:23 UTC

[beam] branch master updated: [BEAM-9744] Remove --region option from SQL tests.

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

ibzib 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 7e07607  [BEAM-9744] Remove --region option from SQL tests.
     new 40903f2  Merge pull request #11408 from ibzib/performance-region
7e07607 is described below

commit 7e0760700fc31dea6eb368cad1a77a2ed745c651
Author: Kyle Weaver <kc...@google.com>
AuthorDate: Mon Apr 13 17:15:49 2020 -0400

    [BEAM-9744] Remove --region option from SQL tests.
    
    These tests don't run on Dataflow, so they don't recognize the region option.
---
 sdks/java/extensions/sql/build.gradle | 2 --
 1 file changed, 2 deletions(-)

diff --git a/sdks/java/extensions/sql/build.gradle b/sdks/java/extensions/sql/build.gradle
index ff89462..2520aca 100644
--- a/sdks/java/extensions/sql/build.gradle
+++ b/sdks/java/extensions/sql/build.gradle
@@ -149,7 +149,6 @@ task runPojoExample(type: JavaExec) {
 task integrationTest(type: Test) {
   group = "Verification"
   def gcpProject = project.findProperty('gcpProject') ?: 'apache-beam-testing'
-  def gcpRegion = project.findProperty('gcpRegion') ?: 'us-central1'
   def gcsTempRoot = project.findProperty('gcsTempRoot') ?: 'gs://temp-storage-for-end-to-end-tests/'
 
   // Disable Gradle cache (it should not be used because the IT's won't run).
@@ -157,7 +156,6 @@ task integrationTest(type: Test) {
 
   def pipelineOptions = [
           "--project=${gcpProject}",
-          "--region=${gcpRegion}",
           "--tempLocation=${gcsTempRoot}",
           "--blockOnRun=false"]