diff options
author | 6543 <6543@obermui.de> | 2020-12-21 14:27:01 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-21 14:27:01 +0000 |
commit | a85051ca9de82756a94f1ea6870de9bd140a6b20 (patch) | |
tree | 4956c34d69ae613e3c15a5f1093b119853770ad8 /syncapi/storage | |
parent | 4a0461378ad0d0af2ba701fb07dea505be469c92 (diff) |
fix imports (#1665)
* fix imports
Signed-off-by: 6543 <6543@obermui.de>
* add sqlite driver import back
Signed-off-by: 6543 <6543@obermui.de>
* rm import of userapi/storage/accounts/sqlite3/storage.go
Diffstat (limited to 'syncapi/storage')
-rw-r--r-- | syncapi/storage/shared/syncserver.go | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/syncapi/storage/shared/syncserver.go b/syncapi/storage/shared/syncserver.go index 128aaa5b..ba9403a5 100644 --- a/syncapi/storage/shared/syncserver.go +++ b/syncapi/storage/shared/syncserver.go @@ -31,7 +31,6 @@ import ( "github.com/matrix-org/dendrite/syncapi/storage/tables" "github.com/matrix-org/dendrite/syncapi/types" "github.com/matrix-org/gomatrixserverlib" - "github.com/sirupsen/logrus" log "github.com/sirupsen/logrus" ) @@ -1150,7 +1149,7 @@ func (d *Database) fetchMissingStateEvents( return nil, err } if len(stateEvents) != len(missing) { - logrus.WithContext(ctx).Warnf("Failed to map all event IDs to events (got %d, wanted %d)", len(stateEvents), len(missing)) + log.WithContext(ctx).Warnf("Failed to map all event IDs to events (got %d, wanted %d)", len(stateEvents), len(missing)) // TODO: Why is this happening? It's probably the roomserver. Uncomment // this error again when we work out what it is and fix it, otherwise we |