Skip to content

Commit

Permalink
Don't automatically pack rr traces
Browse files Browse the repository at this point in the history
  • Loading branch information
tysmith committed May 16, 2024
1 parent b3c1feb commit 082f793
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ffpuppet/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -876,7 +876,7 @@ def save_logs(self, dest: Path, logs_only: bool = False) -> None:
dest,
logs_only=logs_only,
bin_path=self._bin_path,
rr_pack=self._dbg in (Debugger.PERNOSCO, Debugger.RR),
rr_pack=getenv("RR_PACK") == "1",
)

def wait(self, timeout: Optional[float] = None) -> bool:
Expand Down

0 comments on commit 082f793

Please sign in to comment.