Fix duplicate writers (#1376)

* Fix writers

* Don't use writers in both shared and sqlite3
This commit is contained in:
Neil Alexander 2020-09-01 16:58:21 +01:00 committed by GitHub
parent 89c772fb78
commit a9f4d83d30
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 19 additions and 25 deletions

View file

@ -122,7 +122,7 @@ func Open(dbProperties *config.DatabaseOptions, cache caching.RoomServerCaches)
d.Database = shared.Database{
DB: d.db,
Cache: cache,
Writer: sqlutil.NewExclusiveWriter(),
Writer: d.writer,
EventsTable: d.events,
EventTypesTable: d.eventTypes,
EventStateKeysTable: d.eventStateKeys,