mTanasiewicz
mTanasiewicz
Same happens to me. Stack trace: ``` Array to string conversion /var/www/symfony/vendor/doctrine/orm/lib/Doctrine/ORM/UnitOfWork.php:3036 /var/www/symfony/vendor/doctrine/orm/lib/Doctrine/ORM/EntityManager.php:491 /var/www/symfony/vendor/doctrine/data-fixtures/lib/Doctrine/Common/DataFixtures/ProxyReferenceRepository.php:78 /var/www/symfony/vendor/doctrine/data-fixtures/lib/Doctrine/Common/DataFixtures/ProxyReferenceRepository.php:105 /var/www/symfony/vendor/liip/test-fixtures-bundle/src/Services/DatabaseBackup/SqliteDatabaseBackup.php:68 /var/www/symfony/vendor/liip/test-fixtures-bundle/src/Services/DatabaseTools/ORMSqliteDatabaseTool.php:52 /var/www/symfony/vendor/liip/test-fixtures-bundle/src/Test/FixturesTrait.php:87 ```
I use postgreSql with id as UuidType, and those id's are being somehow lost on backup and restore of cache. When I load the fixtures with `doctrine:fixtures:load --env=test` where i...
@alexislefebvre thank you for the answer! I will check tomorrow if this solves my problem.
@alexislefebvre Unfortunately changing Uuid generation to auto and setting proper metadata doesn't work at all. I still get the exception "array to string conversion"
Also when I try to implement my own Backup with `\Liip\TestFixturesBundle\Services\DatabaseBackup\DatabaseBackupInterface` and connect it according to docs, the library still doesn't use it. Completely nothing happens there as it falled...
god bless you man :)
It looks like we're experiencing same issue in our project. More debugging needs to be done, but everything looks like it's the same.
Just in case anyone needs a workaround: https://github.com/mtanasiewicz/symfony-messenger-sqs-workaround
This is actually an issue with this release of Symfony HTTP Client: https://github.com/symfony/http-client/releases/tag/v5.4.35 We have downgraded to 5.4.34 and the issue is gone. [EDIT] We thought so, but the issue...
OK so I think I found the solution. I tried downgrading all the libraries, but nothing worked. I decided to downgrade php from 8.3.3 to 8.2.16 and upgrade all the...