mirror of
https://github.com/matrix-org/matrix-rust-sdk.git
synced 2026-05-13 18:45:44 -04:00
We were using `txn_id` as a way to identify the running stream. Now things are cleaner so we can remove this “debug tool”. This class of problems should not appear anymore. For the record, the biggest problem was the following: It was possible to start multiple `stream`s at the same time, and thus a stream could receive a response sent by another stream. Since we no longer need to restart SlidingSync anymore (i.e. no need to start multiple `stream`s at the same time), this problem should not happen.