We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Booting Kernel happens here, before request handling:
roadrunner-bundle/src/Runtime/Runner.php
Line 21 in ed13b63
So that booting is preventing this line to trigger HttpCache reverse proxy: https://github.com/symfony/http-kernel/blob/1352be19da94ca65d54d20f977b85cee1b397f35/Kernel.php#L172
My suggestion would be to edit this:
roadrunner-bundle/config/services.php
Line 92 in ed13b63
replace:
$services->set(KernelHandler::class) ->args([ service('kernel'), ]);
with something like this:
$services->set(KernelHandler::class) ->args([ service('http_cache'), ]);
Also we maybe need to check if http_cache is enabled in framework.yaml ?
http_cache
framework.yaml
As im not expert in this, are there any better suggestions how to solve it ? :)
Thanks!
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Booting Kernel happens here, before request handling:
roadrunner-bundle/src/Runtime/Runner.php
Line 21 in ed13b63
So that booting is preventing this line to trigger HttpCache reverse proxy:
https://github.com/symfony/http-kernel/blob/1352be19da94ca65d54d20f977b85cee1b397f35/Kernel.php#L172
My suggestion would be to edit this:
roadrunner-bundle/config/services.php
Line 92 in ed13b63
replace:
with something like this:
Also we maybe need to check if
http_cache
is enabled inframework.yaml
?As im not expert in this, are there any better suggestions how to solve it ? :)
Thanks!
The text was updated successfully, but these errors were encountered: