Jean
Jean
I made some tests to see how to implement that feature, but I have trouble with `fastcgi_finish_request` function not defined when running a symfony app in docker `bref/php-82-fpm-dev`. Any idea...
@mnapoli I tested with an http request and not via cli, I was also surprised and tried to tweak php-fpm.conf in bref's container with no success.
> I made some tests to see how to implement that feature, but I have trouble with `fastcgi_finish_request` function not defined when running a symfony app in docker `bref/php-82-fpm-dev`. Any...
I am not a big fan of "GDPR" for naming the package: I'm willing to bet that in x years a new law will be called something like PROTECT (Personal...
Thanks @dgafka for your explanations. We agree on `Presend` interceptors (they relate to messaging) and `Around` interceptors (they relate to method invocation). When I think of messaging in my proposal,...
> Maybe PR should only have one reason for change: fixing an issue with the after interceptor? @lifinsky , this PR is not meant to fix the issue with after...
> > This PR introduces a new interface named RealMessageProcessor which will replace the actual MessageProcessor interface. This interface has only one method: process(Message $message): ?Message > > Why would...
An existing piece of code that shows interceptors do not fit with message channels 😄 : ```php private function checkIfInterceptorIsCorrect(MethodInterceptor $methodInterceptor): void { if ($methodInterceptor->getMessageHandler()->getEndpointId()) { throw ConfigurationException::create("Interceptor {$methodInterceptor} should...
Hello guys, I am having strange behavior in the actual implementation that is hard to maintain with the new implementation. This is the code under test : ```php // packages/Ecotone/tests/Messaging/Fixture/InterceptedBridge/BridgeExample.php...
Hello Guys, I finally realized that aggregates have another behavior. I added tests in #359 to explain it better. Aggregates have the "correct" behavior in the sense that after interceptors...