Skip to content

Commit e7f98a2

Browse files
Fix Database count limitation (#53)
Signed-off-by: AbdullahAlShaad <[email protected]>
1 parent c8c8a3f commit e7f98a2

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

pkg/redisdump/redisdump.go

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -255,9 +255,6 @@ func parseKeyspaceInfo(keyspaceInfo string) ([]uint8, error) {
255255
if err != nil {
256256
return nil, err
257257
}
258-
if dbIndex > 16 {
259-
return nil, fmt.Errorf("Error parsing INFO keyspace")
260-
}
261258

262259
dbs = append(dbs, uint8(dbIndex))
263260
}

0 commit comments

Comments
 (0)