Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
output: forget the metrics File inside the BufWriter (iopsystems#256)
The output file has a reference held by both the BufWriter as well as the NamedTempFile, which results in both of them attempting to close it and a fatal runtime error: "IO Safety violation: owned file descriptor already closed". Forget the file inside the BufWriter, so it is only closed when the NamedTempFile is finished with it.
- Loading branch information