shunping commented on code in PR #38700:
URL: https://github.com/apache/beam/pull/38700#discussion_r3307678747
##########
sdks/python/container/boot.go:
##########
@@ -190,12 +190,12 @@ func launchSDKProcess() error {
experiments := getExperiments(options)
logger.Printf(ctx, "Experiments=%v", experiments)
- pipNoBuildIsolation = false
- if slices.Contains(experiments, "pip_no_build_isolation") {
- pipNoBuildIsolation = true
- logger.Printf(ctx, "Build isolation disabled when installing
packages with pip")
- } else {
+ pipNoBuildIsolation = true
+ if slices.Contains(experiments, "pip_use_build_isolation") {
+ pipNoBuildIsolation = false
logger.Printf(ctx, "Build isolation enabled when installing
packages with pip")
+ } else {
+ logger.Printf(ctx, "Build isolation disabled when installing
packages with pip")
}
Review Comment:
ack
--
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]