### Bug: `read_pidfile` calls fopen with write mode instead of read mode https://github.com/llnl/Spindle/blob/585dacff6734eb039d318577711d47c5b950699c/src/flux/procmgr.c#L219 ### Fix: ``` f = fopen(session_path, "r"); ```