Details
-
Improvement
-
Status: Closed
-
Normal
-
Resolution: Fixed
-
2.28.02
-
None
-
None
Description
The object converter checks for the existence of a child node by first doing a hasNode check, and then fetching the node via getNode. This can fail when there's a lot of concurrency, and after a succesful hasNode check the node gets removed by another thread before getNode is executed.
Instead, the child node should be fetched only once.