valtzu
valtzu
Btw, `SIGALRM` has the same effect as any other signal – it interrupts `sleep` & `usleep`. According to docs, one should check based on return code if the `sleep` was...
I find this interesting since I've faced the issue you described with SQS. So to add this for SQS, we'd implement `KeepaliveReceiverInterface` on `AmazonSqsTransport` and call `ChangeMessageVisibility` with `visibility_timeout` in...
Based on my previous comment, I have SQS implementation here https://github.com/valtzu/symfony/commit/59a77be3ffbe0c2744d1362a2a9187cb3ecd277b
Shouldn't the mapping be used in both, encoding & decoding? Or is that already the case :thinking: Also I'm wondering, would it make more sense to implement this mapping in...
> adding labels @Seb33300 I assume by adding labels you mean csv column names / header – and those may exist when exporting or importing csv data. To me it...
I think your example would work fine if you added `#[SerializedName]`/`#[SerializedPath]` attributes into your entity class: ```php class YourEntity { #[SerializedName('Prénom')] public string $firstName; #[SerializedName('Nom')] public string $lastName; } ```...
Added some extra tests + changelog _(too late for 7.1 as I understand)_
Experiencing the same on 6.4.7 when using `ServiceSubscriberTrait`. ### This does not work _(results in empty locator)_ ```php #[SubscribedService(attributes: new TaggedLocator(tag: 'some_tag', indexAttribute: 'key'))] ``` ### This works ```php #[SubscribedService(attributes:...
> According to [#58031 (comment)](https://github.com/symfony/symfony/issues/58031#issuecomment-2295341949) this used to work in 7.0. However if I rebase your changes on the `7.0` branch it fails like this: > > ``` > There...
Symfony serializer currently has no support / very limited support of generics, hence the error. There is [a feature request to add generics support](https://github.com/symfony/symfony/issues/45071) and also [open (but forgotten?) pull...