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

chamikara pushed a commit to branch transform_service_test_suite
in repository https://gitbox.apache.org/repos/asf/beam.git


The following commit(s) were added to refs/heads/transform_service_test_suite 
by this push:
     new d4f1b797f43 updates
d4f1b797f43 is described below

commit d4f1b797f43889056315027a331923e0b17380e9
Author: Chamikara Jayalath <[email protected]>
AuthorDate: Mon Feb 12 14:10:03 2024 -0800

    updates
---
 .../src/main/groovy/org/apache/beam/gradle/BeamModulePlugin.groovy    | 4 ++++
 1 file changed, 4 insertions(+)

diff --git 
a/buildSrc/src/main/groovy/org/apache/beam/gradle/BeamModulePlugin.groovy 
b/buildSrc/src/main/groovy/org/apache/beam/gradle/BeamModulePlugin.groovy
index 9e86fedb0e9..8307489c604 100644
--- a/buildSrc/src/main/groovy/org/apache/beam/gradle/BeamModulePlugin.groovy
+++ b/buildSrc/src/main/groovy/org/apache/beam/gradle/BeamModulePlugin.groovy
@@ -2620,8 +2620,10 @@ class BeamModulePlugin implements Plugin<Project> {
             expansionServiceOpts.put("java_port", javaExpansionPort)
             // setup test env
             def serviceArgs = 
project.project(':sdks:python').mapToArgString(expansionServiceOpts)
+            System.err.println '********** xyz123 BeamModulePlugin: starting 
transform service ...'
             executable 'sh'
             args '-c', ". ${project.ext.envdir}/bin/activate && 
$pythonDir/scripts/run_expansion_services.sh stop --group_id ${project.name} && 
$pythonDir/scripts/run_expansion_services.sh start $serviceArgs"
+            System.err.println '********** xyz123 BeamModulePlugin: DONE 
starting transform service ...'
           }
         }
       }
@@ -2658,8 +2660,10 @@ class BeamModulePlugin implements Plugin<Project> {
       // 3. Shuts down the expansion service
       def cleanupTask = project.tasks.register(config.name+'Cleanup', Exec) {
         // teardown test env
+        System.err.println '********** xyz123 BeamModulePlugin: stopping 
transform service ...'
         executable 'sh'
         args '-c', ". ${project.ext.envdir}/bin/activate && 
$pythonDir/scripts/run_expansion_services.sh stop --group_id ${project.name}"
+        System.err.println '********** xyz123 BeamModulePlugin: DONE stopping 
transform service ...'
       }
 
       setupTask.configure {finalizedBy cleanupTask}

Reply via email to