Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork9.7k
[EventDispatcher] fix getting priorities of listeners during dispatch#22568
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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Uh oh!
There was an error while loading.Please reload this page.
Conversation
stof commentedApr 28, 2017
I think a better solution is to fix the implementation of |
dmaicher commentedApr 28, 2017
@stof you are right 👍 I pushed a new version. |
nicolas-grekas commentedApr 28, 2017
Thank you@dmaicher. |
…ng dispatch (dmaicher)This PR was merged into the 3.2 branch.Discussion----------[EventDispatcher] fix getting priorities of listeners during dispatch| Q | A| ------------- | ---| Branch? | 3.2| Bug fix? | yes| New feature? | no| BC breaks? | no| Deprecations? | no| Tests pass? | yes| Fixed tickets |#22520| License | MIT| Doc PR | -The WebProfiler collects listener info during dispatching the `kernel.terminate` event which caused issues while retrieving priorities as the wrappers are registered instead of the real listeners.Commits-------79b71c0 [EventDispatcher] fix getting priorities of listeners during dispatch
This PR was merged into the 3.2 branch.Discussion----------[EventDispatcher] fix merge of#22541 from 2.8| Q | A| ------------- | ---| Branch? | 3.2| Bug fix? | no| New feature? | no| BC breaks? | no| Deprecations? | no| Tests pass? | yes| Fixed tickets | -| License | MIT| Doc PR | -This cleans up a test case that was merged from 2.8 into 3.2 here:824dc8b@fabpot due to different implementations I created 2 PR's:2.8:#225413.2:#22568So the 2.8 merge into 3.2 of my change-set introduced some unused variable `$isWrapped` here:824dc8b#diff-af3c4fbca8bb77957c00087543ae5a4dR113This PR just cleans it up and also removes the data provider 😉Commits-------f67eba8 [EventDispatcher] fix merge of#22541 from 2.8
The WebProfiler collects listener info during dispatching the
kernel.terminateevent which caused issues while retrieving priorities as the wrappers are registered instead of the real listeners.