You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We used multiple transporter to send to different DSN, this was the previously recommended way to solve this: #198 (comment)
The new suggestion (#1521) doesn't really work for us as it would be infeasible to start contextmanagers everywhere we use the separate loggers.
However, bumping our sentry-sdk has introduced subtle issues as our TransporterProxy doesn't implement all methods.
Previously all methods were "abstract" but with a6a1be3 they no longer are.
I am asking to make the transporter abstract so that we get better warnings to implement new methods when they get added. I think other users will also benefit from this as it seems like a common use case and users might have followed the same recommendation.
Solution Brainstorm
I am open to making the PR myself but I'd like approval of maintainers first.
The text was updated successfully, but these errors were encountered:
Problem Statement
We used multiple transporter to send to different DSN, this was the previously recommended way to solve this:
#198 (comment)
The new suggestion (#1521) doesn't really work for us as it would be infeasible to start contextmanagers everywhere we use the separate loggers.
However, bumping our
sentry-sdk
has introduced subtle issues as ourTransporterProxy
doesn't implement all methods.Previously all methods were "abstract" but with a6a1be3 they no longer are.
I am asking to make the transporter abstract so that we get better warnings to implement new methods when they get added. I think other users will also benefit from this as it seems like a common use case and users might have followed the same recommendation.
Solution Brainstorm
I am open to making the PR myself but I'd like approval of maintainers first.
The text was updated successfully, but these errors were encountered: