liferoad commented on code in PR #32752:
URL: https://github.com/apache/beam/pull/32752#discussion_r1797367790
##########
sdks/python/container/boot.go:
##########
@@ -189,7 +189,12 @@ func launchSDKProcess() error {
fmtErr := fmt.Errorf("failed to retrieve staged files: %v", err)
// Send error message to logging service before returning up
the call stack
logger.Errorf(ctx, fmtErr.Error())
- return fmtErr
+ // No need to fail the job if
submission_environment_dependencies.txt cannot be loaded
+ if strings.Contains(fmtErr.Error(),
"submission_environment_dependencies.txt") {
Review Comment:
Feel free to create another github issue to check this. My goal is to get
this working with FlinkRunner on Dataproc now.
--
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]