In 0.10.0 the new tracing functionality wipes the environment for subprocesses.
As calls to _get_argument modify input (surely an anti-pattern) the subprocess call becomes POpen(..., env={sentry trace values only}) which wipes the environment from the parent process.
|
env = _get_argument(a, kw, "env", 11, {}) |
In
0.10.0the new tracing functionality wipes the environment for subprocesses.As calls to
_get_argumentmodify input (surely an anti-pattern) the subprocess call becomesPOpen(..., env={sentry trace values only})which wipes the environment from the parent process.sentry-python/sentry_sdk/integrations/stdlib.py
Line 143 in ca0ba7f