Skip to content

Commit

Permalink
Fix Database count limitation
Browse files Browse the repository at this point in the history
Signed-off-by: AbdullahAlShaad <[email protected]>
  • Loading branch information
AbdullahAlShaad committed May 6, 2024
1 parent a453f30 commit 3d02bc5
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions pkg/redisdump/redisdump.go
Original file line number Diff line number Diff line change
Expand Up @@ -255,9 +255,6 @@ func parseKeyspaceInfo(keyspaceInfo string) ([]uint8, error) {
if err != nil {
return nil, err
}
if dbIndex > 16 {
return nil, fmt.Errorf("Error parsing INFO keyspace")
}

dbs = append(dbs, uint8(dbIndex))
}
Expand Down

0 comments on commit 3d02bc5

Please sign in to comment.