Sergiu Ionescu
Sergiu Ionescu
I've experience similar behaviour, I have a hunch this is related to the dedletter queue functionality and the way messages ids are being assigned. I've noticed that the messages are...
@micossow If you could help me with a logback configuration that would log client calls and internals to the console output I could try to get more insight into this....
Thanks I got more log data with this. With the following queue config: ``` local-test-notification { defaultVisibilityTimeout = 0 seconds delay = 0 seconds receiveMessageWait = 0 seconds deadLettersQueue {...
Thanks @micossow there is definetly some eagger and unsolicited fetching from happening on the client library side that I have to track down.
[JsonSchema] v3.1.6 regression - modifying `output` to a DTO can cause infinite loop in schema types
Although I tend to agree with @jamesisaac and the straightforward solution here would be a revert, I've added a [PR](https://github.com/api-platform/core/pull/5973) with a patch that allows DTO wrappers to properly resolve...
Maybe a resource approach would fit the bill better api here? ``` $subscriptionResource = $redis->subscribe(['a']); $message = $subscriptionResource->fetch();// blocking yield $message; ``` I am trying to stream messages from a...