Message370398
> I it related to issue25782?
Yes -- I didn't see that issue. I'm a little confused about the resolution of that issue though.
For clarification, the existing behavior on master:
When trying to raise the exception H,
F -> G -> H -> I -> NULL
becomes
H -> F -> G -> NULL
But when trying to set the exception A on top of
B -> C -> D -> E -> C -> ...,
it gets stuck in an infinite loop from the existing cycle.
My PR keeps the first behavior and resolves the infinite loop by making it
A -> B -> C -> D -> E -> NULL,
which seems consistent with the existing behavior.
So it should be strictly a bugfix. |
|
| Date |
User |
Action |
Args |
| 2020-05-30 19:38:45 | Dennis Sweeney | set | recipients:
+ Dennis Sweeney, asvetlov, chris.jerdonek, serhiy.storchaka, yselivanov, eamanu, miss-islington, BTaskaya, aeros, carltongibson, felixxm |
| 2020-05-30 19:38:45 | Dennis Sweeney | set | messageid: <[email protected]> |
| 2020-05-30 19:38:45 | Dennis Sweeney | link | issue40696 messages |
| 2020-05-30 19:38:44 | Dennis Sweeney | create | |
|