File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/platforms/ruby/common Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -133,7 +133,7 @@ config.timeout #=> config.transport.timeout
133
133
config.open_timeout # => config.transport.open_timeout
134
134
config.proxy # => config.transport.proxy
135
135
136
- # These options are present in sentry-ruby 4.* but has been removed in 5.0 with the faraday removal
136
+ # These options are present in sentry-ruby 4.* but were removed in 5.0 with the faraday removal
137
137
config.http_adapter # => config.transport.http_adapter
138
138
config.faraday_builder # => config.transport.faraday_builder
139
139
```
@@ -281,7 +281,7 @@ config.before_send = lambda do |event, hint|
281
281
if exception = hint[:exception ]
282
282
exception.raven_context.each do |key , value |
283
283
# here I assume the event would be a Sentry::Event object
284
- # it'll be a hash if you use the async callback though (which will be removed in version 5 .0)
284
+ # however, it'll be a hash if you use the async callback (which will be removed in version 6 .0)
285
285
event.send(" #{ key } =" , value)
286
286
end
287
287
end
You can’t perform that action at this time.
0 commit comments