AydarZaynutdinov commented on a change in pull request #15770:
URL: https://github.com/apache/beam/pull/15770#discussion_r734395731



##########
File path: playground/backend/internal/fs_tool/java_fs.go
##########
@@ -21,14 +21,14 @@ import (
 )
 
 const (
-       javaBaseFileFolder          = parentBaseFileFolder + "/executable_files"
+       javaBaseFileFolder          = "executable_files"
        javaExecutableFileExtension = "java"
        javaCompiledFileExtension   = "class"
 )
 
 // newJavaLifeCycle creates LifeCycle with java SDK environment.
-func newJavaLifeCycle(pipelineId uuid.UUID) *LifeCycle {
-       baseFileFolder := fmt.Sprintf("%s_%s", javaBaseFileFolder, pipelineId)
+func newJavaLifeCycle(pipelineId uuid.UUID, workingDir string) *LifeCycle {
+       baseFileFolder := fmt.Sprintf("%s/%s/%s", workingDir, 
javaBaseFileFolder, pipelineId)

Review comment:
       Changed.




-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


Reply via email to