mirror of
https://github.com/prometheus/prometheus.git
synced 2024-11-13 00:54:04 -08:00
commit
44dd5e1202
6
db.go
6
db.go
|
@ -299,7 +299,11 @@ func (db *DB) retentionCutoff() (bool, error) {
|
||||||
}
|
}
|
||||||
|
|
||||||
// This will close the dirs and then delete the dirs.
|
// This will close the dirs and then delete the dirs.
|
||||||
return len(dirs) > 0, db.reload(dirs...)
|
if len(dirs) > 0 {
|
||||||
|
return true, db.reload(dirs...)
|
||||||
|
}
|
||||||
|
|
||||||
|
return false, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
// Appender opens a new appender against the database.
|
// Appender opens a new appender against the database.
|
||||||
|
|
Loading…
Reference in a new issue