You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The ApplicationStartup class can be called from different threads when request scope beans are used. I think that FlightRecorderApplicationStartup could fail in such situations.
Prior to this commit, in some cases application context startup steps
could be created concurrently, which could cause issues with the current
implementation tracking the parent/child relationship between steps.
This commit ensures that the flight recorder implementation is using
thread safe collection implementations for that.
Fixesspring-projectsgh-26941
The
ApplicationStartup
class can be called from different threads when request scope beans are used. I think thatFlightRecorderApplicationStartup
could fail in such situations.See spring-projects/spring-boot#25792 for a similar issue in Spring Boot's
BufferingApplicationStartup
The text was updated successfully, but these errors were encountered: