You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
use strict;
use warnings;
use Redis;
my $conn = Redis->new(
reconnect => 20,
every => 1000,
);
while(1){
eval {
$conn->multi;
$conn->set("x" => 42);
$conn->exec;
1;
} or do {
print $@;
}
}
prints "reconnect disabled inside transaction or watch" forever if I restart Redis Server
The text was updated successfully, but these errors were encountered:
Hangs when reconnect disabled inside transaction
prints "reconnect disabled inside transaction or watch" forever if I restart Redis Server
The text was updated successfully, but these errors were encountered: