Skip to content

Commit 586a340

Browse files
authored
Merge pull request #41 from rainforestapp/RF-21864/pp/synchronous_sentry
[RF-21864] Continue sending events to Sentry synchronously after Sentry 4.1 update
2 parents c7d9c4a + 9c3e9d9 commit 586a340

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

lib/queue_classic_plus/tasks/work.rake

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ namespace :qc_plus do
88
if defined?(Sentry)
99
Sentry.init do |config|
1010
config.excluded_exceptions = []
11+
config.background_worker_threads = 0 if Gem::Version.new(Sentry::VERSION) >= Gem::Version.new('4.1.0')
1112
end
1213
elsif defined?(Raven)
1314
Raven.configure do |config|

lib/queue_classic_plus/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module QueueClassicPlus
2-
VERSION = "4.0.0.alpha6"
2+
VERSION = "4.0.0.alpha7"
33
end

0 commit comments

Comments
 (0)