Remove unnecessary error from ToggleCompaction fns

Signed-off-by: Goutham Veeramachaneni <cs14btech11014@iith.ac.in>
This commit is contained in:
Goutham Veeramachaneni 2017-06-06 23:45:23 +05:30
parent 261cd9f393
commit ff4ccb6eb0
No known key found for this signature in database
GPG Key ID: F1C217E8E9023CAD
1 changed files with 2 additions and 6 deletions

8
db.go
View File

@ -531,25 +531,21 @@ func (db *DB) Close() error {
}
// DisableCompactions disables compactions.
func (db *DB) DisableCompactions() error {
func (db *DB) DisableCompactions() {
if db.compacting {
db.cmtx.Lock()
db.compacting = false
db.logger.Log("msg", "compactions disabled")
}
return nil
}
// EnableCompactions enables compactions.
func (db *DB) EnableCompactions() error {
func (db *DB) EnableCompactions() {
if !db.compacting {
db.cmtx.Unlock()
db.compacting = true
db.logger.Log("msg", "compactions enabled")
}
return nil
}
// Snapshot writes the current data to the directory.