Skip to content

Commit

Permalink
Release v6.22.1
Browse files Browse the repository at this point in the history
Fix `LocalJumpError` introduced in v6.22.0
  • Loading branch information
imjoehaines authored Aug 11, 2021
2 parents 8ecbd9d + 6a3676d commit d572441
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
Changelog
=========

## v6.22.1 (11 August 2021)

### Enhancements

* Fix possible `LocalJumpError` introduced in v6.22.0
| [#675](https://github.com/bugsnag/bugsnag-ruby/pull/675)

## v6.22.0 (10 August 2021)

### Enhancements
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
6.22.0
6.22.1
2 changes: 1 addition & 1 deletion lib/bugsnag/integrations/rails/active_job.rb
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def self.included(base)

# if we have an integration for this queue adapter already then we should
# leave this job alone or we'll end up with duplicate metadata
return block.call if EXISTING_INTEGRATIONS.include?(adapter)
next block.call if EXISTING_INTEGRATIONS.include?(adapter)

Bugsnag.configuration.detected_app_type = 'active job'

Expand Down

0 comments on commit d572441

Please sign in to comment.