Closed
Description
I use dbal package 0.9.6 with mysql.
producer->send() does not add a record to the queue.
$this->context->getDbalConnection()->insert() in DbalProducer.php:118 returns 0 but no any exception thrown.
But if I comment out the third parameter with types, the message is added successfully.
The problem seems to be in the parameter 'redelivered' => Type::BOOLEAN,
When it's changed to 'redelivered' => Type::SMALLINT,
everything works