0
0
Fork 0
mirror of https://github.com/matrix-org/dendrite synced 2024-10-01 23:38:55 +02:00

Fix bad initialisation of sync API notifier in monolith (#176)

This commit is contained in:
Brendan Abolivier 2017-08-04 14:54:08 +01:00 committed by Kegsay
parent 1a28cf9767
commit 03dd456b47

View file

@ -214,8 +214,8 @@ func (m *monolith) setupNotifiers() {
log.Panicf("startup: failed to get latest sync stream position : %s", err)
}
n := syncapi_sync.NewNotifier(syncapi_types.StreamPosition(pos))
if err = n.Load(m.syncAPIDB); err != nil {
m.syncAPINotifier = syncapi_sync.NewNotifier(syncapi_types.StreamPosition(pos))
if err = m.syncAPINotifier.Load(m.syncAPIDB); err != nil {
log.Panicf("startup: failed to set up notifier: %s", err)
}
}