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