Hi,
Using Magento 2.4.6-p2 open source and colinmollenhour/credis v1.16.0. Using a command line script I am getting this error:
PHP Warning: Trying to access array offset on value of type bool in colinmollenhour/credis/Client.php on line 1156
Not sure why this is happening. Have not debugged in depth, but
$execResponse = array_pop($response);
is actually false, so doing:
if(!empty($execResponse))
{
foreach ($queuedResponses as $key => $command) {
list($name, $arguments) = $command;
$response[] = $this->decode_reply($name, $execResponse[$key], $arguments);
}
}
suppresses the warning.
Michael.