-
-
Notifications
You must be signed in to change notification settings - Fork 9.6k
[FrameworkBundle] Fix CacheCollectorPass priority #23018
New issue
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
Conversation
55b776c
to
432072c
Compare
@chalasr I just tested your PR in my project and it seems it solves my issue :) Should I have a short explanation of what was the problem? Thanks a lot! |
@tifabien The You're welcome, thanks for confirming. |
@@ -7,8 +7,8 @@ | |||
<services> | |||
<defaults public="false" /> | |||
|
|||
<!-- DataCollector --> | |||
<service id="data_collector.cache" class="Symfony\Component\Cache\DataCollector\CacheDataCollector"> | |||
<!-- DataCollector (must be public to prevent inlining) --> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
public to prevent inlining, made private in Cache...Pass
432072c
to
a347ae3
Compare
a347ae3
to
28b253a
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍
Thank you @chalasr. |
This PR was merged into the 3.3 branch. Discussion ---------- [FrameworkBundle] Fix CacheCollectorPass priority | Q | A | ------------- | --- | Branch? | 3.3 | Bug fix? | yes | New feature? | no | BC breaks? | no | Deprecations? | no | Tests pass? | yes | Fixed tickets | | License | MIT | Doc PR | #22960 (comment) It was run before optimization, so child definitions were not resolved yet. Commits ------- 28b253a Fix CacheCollectorPass priority
It was run before optimization, so child definitions were not resolved yet.