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
{{ message }}
This repository has been archived by the owner on Aug 30, 2023. It is now read-only.
die"unable to parse public and secret keys from: $sentry_dsn\n"
Even examples (e.g. at JavaScript configuration) show this type of usage. Since the other client libraries (like Python or JavaScript) can handle it, so should the Perl client. Checking for the colon in the userinfo shouldn't be enforced.
My current workaround: Adding : (ie. an empty secret key) before the @ in the DSN.
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Environment
Sentry SaaS (sentry.io)
Sentry::Raven 1.13 in Perl 5.26.1 on Ubuntu 18.04.
Steps to Reproduce
Define a
SENTRY_DSN
environment variable or pass asentry_dsn
attribute without secret key (as defined at The Parts of the DSN) toSentry::Raven->new();
Expected Result
The initialization should happen silently.
Actual Result
The initialization fails with the error
This originates from
perl-raven/lib/Sentry/Raven.pm
Line 185 in 5b5b123
Even examples (e.g. at JavaScript configuration) show this type of usage. Since the other client libraries (like Python or JavaScript) can handle it, so should the Perl client. Checking for the colon in the userinfo shouldn't be enforced.
My current workaround: Adding
:
(ie. an empty secret key) before the@
in the DSN.The text was updated successfully, but these errors were encountered: