mirror of
https://github.com/matrix-org/dendrite.git
synced 2024-11-23 06:41:56 -06:00
Tweak delivery options on RS input
This commit is contained in:
parent
665ca9c6cc
commit
14bf1f8a09
|
@ -65,9 +65,9 @@ func (r *Inputer) Start() error {
|
|||
}
|
||||
inbox, _ := r.workers.LoadOrStore(roomID, &phony.Inbox{})
|
||||
inbox.(*phony.Inbox).Act(nil, func() {
|
||||
_ = msg.InProgress()
|
||||
if _, err := r.processRoomEvent(context.TODO(), &inputRoomEvent); err != nil {
|
||||
sentry.CaptureException(err)
|
||||
|
||||
} else {
|
||||
hooks.Run(hooks.KindNewEventPersisted, inputRoomEvent.Event)
|
||||
}
|
||||
|
@ -75,6 +75,7 @@ func (r *Inputer) Start() error {
|
|||
})
|
||||
},
|
||||
nats.ManualAck(),
|
||||
nats.MaxDeliver(0),
|
||||
)
|
||||
return err
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue