We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Using capture_exception raises the error sentry-ruby-core-5.1.1/lib/sentry/interfaces/exception.rb:1:in `build': uninitialized constant Sentry::ExceptionInterface::Set (NameError)
capture_exception
This looks to be because Set isn't loaded.
Set
I think the loader file should require "set"
require "set"
Basic ruby project, initialize Sentry and then Sentry.capture_exception(error, tags: tags).
Sentry.capture_exception(error, tags: tags)
Capture exception doesn't raise because set is loaded
set
Capture exception raises because set isn't loaded.
3.0.3
5.1.1
No response
The text was updated successfully, but these errors were encountered:
st0012
Successfully merging a pull request may close this issue.
Issue Description
Using
capture_exception
raises the error sentry-ruby-core-5.1.1/lib/sentry/interfaces/exception.rb:1:in `build': uninitialized constant Sentry::ExceptionInterface::Set (NameError)This looks to be because
Set
isn't loaded.I think the loader file should
require "set"
Reproduction Steps
Basic ruby project, initialize Sentry and then
Sentry.capture_exception(error, tags: tags)
.Expected Behavior
Capture exception doesn't raise because
set
is loadedActual Behavior
Capture exception raises because
set
isn't loaded.Ruby Version
3.0.3
SDK Version
5.1.1
Integration and Its Version
No response
Sentry Config
No response
The text was updated successfully, but these errors were encountered: