hi folks, so out of nowhere Redis::psubscribe(['*'], ...) has stopped working for me.
there is no logged error, just on any message it quits out right away. I've verified that running the messages are unchanged.
for example, this set up in a command:
$fcr = Redis::connection('test'); $fcr->psubscribe(['*'], function (string $message, string $channel): void { Log::info('hello'); $this->info('world'); });
dies the second a message comes in, and offers no error output whatsoever.