Skip to content

Commit

Permalink
Lint fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
arpitbbhayani committed Dec 4, 2024
1 parent fdbb979 commit 0d736f6
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions internal/eval/store_eval.go
Original file line number Diff line number Diff line change
Expand Up @@ -2877,9 +2877,8 @@ func evalBFRESERVE(args []string, store *dstore.Store) *EvalResponse {
return makeEvalResult(clientio.OK)
} else if bf != nil { // bloom filter already exists
return makeEvalError(diceerrors.ErrKeyExists)
} else {
return makeEvalResult(clientio.OK)
}
return makeEvalResult(clientio.OK)
}

// evalBFADD evaluates the BF.ADD command responsible for adding an element to a bloom filter. If the filter does not
Expand Down

0 comments on commit 0d736f6

Please sign in to comment.