0
0
Fork 0
mirror of https://github.com/matrix-org/dendrite synced 2024-05-31 19:49:00 +02:00

Remove a couple unnecessary Sentry captures from backfill

This commit is contained in:
Neil Alexander 2022-08-25 11:01:07 +01:00
parent cd7fa34595
commit 8ff3f1a7c9
No known key found for this signature in database
GPG key ID: A02A2019A2BB0944

View file

@ -18,7 +18,6 @@ import (
"context"
"fmt"
"github.com/getsentry/sentry-go"
"github.com/matrix-org/gomatrixserverlib"
"github.com/matrix-org/util"
"github.com/sirupsen/logrus"
@ -320,7 +319,6 @@ FederationHit:
b.eventIDToBeforeStateIDs[targetEvent.EventID()] = res
return res, nil
}
sentry.CaptureException(lastErr) // temporary to see if we might need to raise the server limit
return nil, lastErr
}
@ -398,7 +396,6 @@ func (b *backfillRequester) StateBeforeEvent(ctx context.Context, roomVer gomatr
}
return result, nil
}
sentry.CaptureException(lastErr) // temporary to see if we might need to raise the server limit
return nil, lastErr
}