mirror of
https://github.com/matrix-org/dendrite.git
synced 2024-11-22 14:21:55 -06:00
Detect consumer being deleted in JetStreamConsumer
This commit is contained in:
parent
1e714bc3b6
commit
a916b041b1
|
@ -2,6 +2,7 @@ package jetstream
|
|||
|
||||
import (
|
||||
"context"
|
||||
"errors"
|
||||
"fmt"
|
||||
|
||||
"github.com/getsentry/sentry-go"
|
||||
|
@ -72,6 +73,9 @@ func JetStreamConsumer(
|
|||
// just timed out and we should try again.
|
||||
continue
|
||||
}
|
||||
} else if errors.Is(err, nats.ErrConsumerDeleted) {
|
||||
// The consumer was deleted so stop.
|
||||
return
|
||||
} else {
|
||||
// Something else went wrong, so we'll panic.
|
||||
sentry.CaptureException(err)
|
||||
|
|
Loading…
Reference in a new issue