We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 279bd8f commit 13a56a0Copy full SHA for 13a56a0
1 file changed
src/executor/helpers/env.rs
@@ -24,9 +24,7 @@ pub fn get_base_injected_env(
24
("PYTHONHASHSEED".into(), "0".into()),
25
(
26
"PYTHON_PERF_JIT_SUPPORT".into(),
27
- // FIXME(COD-2645): Keep this disabled on macOS. Enabling it causes
28
- // many unresolved addresses on the stack when profiling with samply.
29
- if mode == RunnerMode::Walltime && !cfg!(target_os = "macos") {
+ if mode == RunnerMode::Walltime {
30
"1".into()
31
} else {
32
"0".into()
0 commit comments