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
fix(ShadowNodeRegistry): thread safety issue in ShadowNodeRegistry (microsoft#1337)
Various reports of an InvalidOperationException occurring sporadically on app start have been filed (microsoft#1326, microsoft#266). It seems that this is related to the enumeration of root nodes tags in a dictionary from a KeyCollection while the dictionary is being updated. This PR copies the keys to a list (we reuse the list to reduce heap impact) to get around the exception (at least until a better architecture for this shadow node registry is proposed).
Fixesmicrosoft#1326Fixesmicrosoft#266
0 commit comments