You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
See #851 for original issue and #858 for solution.
Long story short, it seems that using a context manager (i.e., with darshan.DarshanReport(log_path) as report:) for report objects helps avoid potential memory/threading issues when releasing them. This ultimately was causing some of our pytest runs to hang in various contexts.
We should update our docs and various examples to use this approach for managing report objects so users don't get potentially bitten by this.
The text was updated successfully, but these errors were encountered:
See #851 for original issue and #858 for solution.
Long story short, it seems that using a context manager (i.e.,
with darshan.DarshanReport(log_path) as report:
) for report objects helps avoid potential memory/threading issues when releasing them. This ultimately was causing some of our pytest runs to hang in various contexts.We should update our docs and various examples to use this approach for managing report objects so users don't get potentially bitten by this.
The text was updated successfully, but these errors were encountered: