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

pabloem 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 c5007de  Fix java test
     new 60f94d3  Merge pull request #16663 from [BEAM-13773] [Playground] 
[Bugfix] Error during executing of tests on Java SDK
c5007de is described below

commit c5007de95c9c7f8c3a99d3f9af0272721f7524f6
Author: Pavel Avilov <[email protected]>
AuthorDate: Mon Jan 31 19:17:51 2022 +0300

    Fix java test
---
 playground/backend/internal/setup_tools/builder/setup_builder.go | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/playground/backend/internal/setup_tools/builder/setup_builder.go 
b/playground/backend/internal/setup_tools/builder/setup_builder.go
index 5209ff0..82d6cdf 100644
--- a/playground/backend/internal/setup_tools/builder/setup_builder.go
+++ b/playground/backend/internal/setup_tools/builder/setup_builder.go
@@ -74,9 +74,10 @@ func Compiler(paths *fs_tool.LifeCyclePaths, sdkEnv 
*environment.BeamEnvs) *exec
 
        switch sdk {
        case pb.Sdk_SDK_JAVA:
-               builder.
+               builder = builder.
                        WithCompiler().
-                       
WithFileName(GetFirstFileFromFolder(paths.AbsoluteSourceFileFolderPath))
+                       
WithFileName(GetFirstFileFromFolder(paths.AbsoluteSourceFileFolderPath)).
+                       ExecutorBuilder
        }
        return &builder
 }

Reply via email to