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
I think L59 in Concat shares the inner subscription among any observers, so when two observers subscribe to the same concat() structure, they get a race on the inner subscription. I believe they should run independently.
In addition, on L124-L125 and L134, innerSubscription is accessed while not holding the synchronized (nextSequences) lock.
Thoughs?
The text was updated successfully, but these errors were encountered:
I think L59 in
Concat
shares the inner subscription among any observers, so when two observers subscribe to the sameconcat()
structure, they get a race on the inner subscription. I believe they should run independently.In addition, on L124-L125 and L134,
innerSubscription
is accessed while not holding thesynchronized (nextSequences)
lock.Thoughs?
The text was updated successfully, but these errors were encountered: