Skip to content

Commit

Permalink
Allow parsing of command details when running Redis 6
Browse files Browse the repository at this point in the history
  • Loading branch information
mp911de committed Nov 15, 2019
1 parent eee5706 commit abeedcc
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ public static List<CommandDetail> parse(List<?> commandOutput) {
}

Collection<?> collection = (Collection<?>) o;
if (collection.size() != COMMAND_INFO_SIZE) {
if (collection.size() < COMMAND_INFO_SIZE) {
continue;
}

Expand Down

0 comments on commit abeedcc

Please sign in to comment.