[ https://issues.apache.org/jira/browse/BEAM-13560?focusedWorklogId=707610&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-707610 ]
ASF GitHub Bot logged work on BEAM-13560: ----------------------------------------- Author: ASF GitHub Bot Created on: 12/Jan/22 16:14 Start Date: 12/Jan/22 16:14 Worklog Time Spent: 10m Work Description: daria-malkova commented on a change in pull request #16477: URL: https://github.com/apache/beam/pull/16477#discussion_r783223963 ########## File path: playground/backend/internal/code_processing/code_processing_test.go ########## @@ -532,64 +526,7 @@ func TestGetLastIndex(t *testing.T) { } } -func Test_setJavaExecutableFile(t *testing.T) { Review comment: Done ########## File path: playground/backend/internal/fs_tool/java_fs.go ########## @@ -36,8 +36,7 @@ func newJavaLifeCycle(pipelineId uuid.UUID, pipelinesFolder string) *LifeCycle { } // executableName returns name that should be executed (HelloWorld for HelloWorld.class for java SDK) -func executableName(pipelineId uuid.UUID, pipelinesFolder string) (string, error) { - baseFileFolder := filepath.Join(pipelinesFolder, pipelineId.String()) +func executableName(baseFileFolder string) (string, error) { binFileFolder := filepath.Join(baseFileFolder, compiledFolderName) dirEntries, err := os.ReadDir(binFileFolder) Review comment: Done -- 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: github-unsubscr...@beam.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org Issue Time Tracking ------------------- Worklog Id: (was: 707610) Time Spent: 1h 20m (was: 1h 10m) > [Playground] Split builder (refactoring) > ---------------------------------------- > > Key: BEAM-13560 > URL: https://issues.apache.org/jira/browse/BEAM-13560 > Project: Beam > Issue Type: Improvement > Components: beam-playground > Reporter: Daria Malkova > Assignee: Daria Malkova > Priority: P3 > Labels: beam-playground-backend, beam-playground-sprint-7 > Time Spent: 1h 20m > Remaining Estimate: 0h > > Improve usage of executor builder by splitting it to parts. > Now executor builder is created at once for all steps: validation, > preparation, compiling, and run/test. To make a change at some step we have > to change the created executor. To avoid it, we can create a builder for each > step separately after the previous steps are executed. -- This message was sent by Atlassian Jira (v8.20.1#820001)