Skip to content

Commit

Permalink
Merge pull request #85 from benevolent0505/fix-info-error-message
Browse files Browse the repository at this point in the history
Fix info command error message
  • Loading branch information
shogo82148 committed May 29, 2019
2 parents 9478819 + 5e87e06 commit d039209
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Redis/Fast.pm
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,7 @@ sub info {
my $self = shift;
$self->__is_valid_command('info');
my ($ret, $error) = $self->__info(@_);
confess "[keys] $error, " if defined $error;
confess "[info] $error, " if defined $error;
return $ret unless ref $ret eq 'ARRAY';
return @$ret;
}
Expand Down

0 comments on commit d039209

Please sign in to comment.