We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 09a1e60 commit 5702872Copy full SHA for 5702872
1 file changed
sdks/python/container/boot.go
@@ -190,12 +190,12 @@ func launchSDKProcess() error {
190
experiments := getExperiments(options)
191
logger.Printf(ctx, "Experiments=%v", experiments)
192
193
- pipNoBuildIsolation = false
194
- if slices.Contains(experiments, "pip_no_build_isolation") {
195
- pipNoBuildIsolation = true
196
- logger.Printf(ctx, "Build isolation disabled when installing packages with pip")
197
- } else {
+ pipNoBuildIsolation = true
+ if slices.Contains(experiments, "pip_use_build_isolation") {
+ pipNoBuildIsolation = false
198
logger.Printf(ctx, "Build isolation enabled when installing packages with pip")
+ } else {
+ logger.Printf(ctx, "Build isolation disabled when installing packages with pip")
199
}
200
201
// (2) Retrieve and install the staged packages.
0 commit comments