-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* SRCH-2249 Remove airbrake Ripped out all traces of airbrake and ran `bundle update`.
- Loading branch information
1 parent
2a36c39
commit 64ae817
Showing
6 changed files
with
14 additions
and
57 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,11 @@ | ||
require 'airbrake/resque' | ||
require 'resque/failure/multiple' | ||
require 'resque/failure/redis' | ||
require 'resque-timeout' | ||
|
||
config = Rails.application.secrets.system_redis | ||
Resque.redis = [config[:host], config[:port]].join(':') | ||
|
||
Resque::Failure::Multiple.classes = [Resque::Failure::Redis, Resque::Failure::Airbrake] | ||
Resque::Failure::Multiple.classes = [Resque::Failure::Redis] | ||
Resque::Failure.backend = Resque::Failure::Multiple | ||
|
||
Resque::Plugins::Timeout.timeout = 1.hour |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters