summary refs log tree commit diff
path: root/tests/storage/test_purge.py (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Make token serializing/deserializing async (#8427)Erik Johnston2020-09-301-3/+6
| | | The idea is that in future tokens will encode a mapping of instance to position. However, we don't want to include the full instance name in the string representation, so instead we'll have a mapping between instance name and an immutable integer ID in the DB that we can use instead. We'll then do the lookup when we serialize/deserialize the token (we could alternatively pass around an `Instance` type that includes both the name and ID, but that turns out to be a lot more invasive).
* Various clean ups to room stream tokens. (#8423)Erik Johnston2020-09-291-6/+4
|
* Convert stream database to async/await. (#8074)Patrick Cloke2020-08-171-33/+16
|
* Convert storage layer to async/await. (#7963)Patrick Cloke2020-07-281-2/+6
|
* Split purge API into events vs stateErik Johnston2019-10-301-7/+8
|
* Port storage/ to Python 3 (#3725)Amber Brown2018-08-311-0/+106