Oleg Andreyev
Oleg Andreyev
real life example: - \Symfony\Component\Validator\ConstraintViolationListInterface ```php @method string __toString() Converts the violation into a string for debugging purposes. Not implementing it is deprecated since Symfony 6.1. ``` ```bash ------ ---------------------------------------------------------------------------------------------------------...
This is something I'd like to see too, IIRC at some point it was possible to load fixtures by name, and it would be great to have an ability to...
> I'm sorry that nobody has picked up this PR after my initial triage. I still don't fully understand why problem is solved here. The collector needs a valid database...
^^^ and the idea was: avoid collecting migrations if connection is not configured.
and PR that was trying to fix similar issue: https://github.com/doctrine/DoctrineMigrationsBundle/pull/428 just wrapped code with try/catch which does not prevent of trying to make a connection
Enable messenger: ```yaml fos_elastica: messenger: ~ ``` Configure transport ```yaml framework: messenger: transports: async_elasticsearch: '%env(MESSENGER_TRANSPORT_DSN)%/async_elasticsearch routing: FOS\ElasticaBundle\Message\AsyncPersistPage: async_elasticsearch ``` Configure handler: ```yaml FOS\ElasticaBundle\Message\Handler\AsyncPersistPageHandler: arguments: - '@fos_elastica.async_pager_persister' tags: [ 'messenger.message_handler' ]...
This configuration does not work with "creating" index and switching aliases. It uses existing index (or creates if missing)
Unfortunately you cannot, it's async and order of execution is not guaranteed. The only way I can think of is monitoring queue size, and switch after it has 0 messages
atm applied following workaround: ```js if (props.type === 'radio') { return ( { let valuesType = typeof props.values[0].name; let valueType = typeof v; if (valueType !== valuesType && valuesType ===...
@jakeboone02 I've added a code-snippet here https://github.com/react-querybuilder/react-querybuilder/issues/622#issuecomment-1872126396, I see that we'll see to compare values and value, if values has Int, then value should be casted to Int, and vice-versa.