forked from cerc-io/plugeth
metrics: fix file descriptor leak when reading disk stats on linux
The disk stats file was not closed after reading.
This commit is contained in:
parent
ba14957cf3
commit
bf48ed32dd
@ -34,6 +34,7 @@ func ReadDiskStats(stats *DiskStats) error {
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
defer inf.Close()
|
||||
in := bufio.NewReader(inf)
|
||||
|
||||
// Iterate over the IO counter, and extract what we need
|
||||
|
Loading…
Reference in New Issue
Block a user