Closed
Description
Symfony version(s) affected: 4.3
Description
Redis transport does not create a stream and when messenger tries to consume messages it fails with NOGROUP No such key 'msgssls' or consumer group 'symfony' in XREADGROUP with GROUP option
although line $this->connection->xgroup('CREATE', $this->stream, $this->group, 0, true);
is executed in Symfony\Component\Messenger\Transport\RedisExt\Connection
no command is issued in redis.
If I create stream manually like this "XGROUP" "CREATE" "msgssls" "symfony" "0" "MKSTREAM"
it processes 1 message and then gives Segmentation fault.
This works fine on my mac, but fails on debian server.