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
Before this change, a producer in the test would not wait for all other producers to finish sending their messages before calling complete(). Because a producer could end up calling complete() before the other publishers finished sending, the test would see those "trailing" messages after the complete() as having been dropped. To fix this, we now wait to call complete() until all producers have finished writing their messages.
0 commit comments