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
CoordinatorRuleManager didn't have a race condition prior to #6898, actually, because the ConcurrentHashMap is never modified after assigning into AtomicReference. So the proper fix was (and the proper action now is) to replace ConcurrentHashMap with simple HashMap.
The text was updated successfully, but these errors were encountered:
CoordinatorRuleManager
didn't have a race condition prior to #6898, actually, because theConcurrentHashMap
is never modified after assigning intoAtomicReference
. So the proper fix was (and the proper action now is) to replace ConcurrentHashMap with simple HashMap.The text was updated successfully, but these errors were encountered: