Fix extra reloads.

Previously we reloaded every 1 minute irrespective of whether there are
deleted blocks or not.

Signed-off-by: Goutham Veeramachaneni <cs14btech11014@iith.ac.in>
This commit is contained in:
Goutham Veeramachaneni 2018-01-26 19:33:59 +05:30
parent ad0fdaf436
commit b7bea04e62
No known key found for this signature in database
GPG key ID: F1C217E8E9023CAD

6
db.go
View file

@ -299,7 +299,11 @@ func (db *DB) retentionCutoff() (bool, error) {
}
// 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.