Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions sdks/python/container/boot.go
Original file line number Diff line number Diff line change
Expand Up @@ -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")
}
Comment thread
shunping marked this conversation as resolved.

// (2) Retrieve and install the staged packages.
Expand Down
Loading