Skip to content

Commit

Permalink
config: change default remote host to notifier-configs.airbrake.io
Browse files Browse the repository at this point in the history
  • Loading branch information
kyrylo committed Nov 16, 2020
1 parent 852fb3c commit 959d615
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ Airbrake Ruby Changelog
* Remote config: improved handling of responses that return HTML (they will be
logged correctly) ([#627](https://github.com/airbrake/airbrake-ruby/pull/627),
[#628](https://github.com/airbrake/airbrake-ruby/pull/628))
* Remote config: change default host to `https://notifier-configs.airbrake.io`
([#629](https://github.com/airbrake/airbrake-ruby/pull/629))

### [v5.1.0][v5.1.0] (October 20, 2020)

Expand Down
2 changes: 1 addition & 1 deletion lib/airbrake-ruby/config.rb
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ def initialize(user_config = {})
self.project_key = user_config[:project_key]
self.error_host = 'https://api.airbrake.io'
self.apm_host = 'https://api.airbrake.io'
self.remote_config_host = 'https://v1-production-notifier-configs.s3.amazonaws.com'
self.remote_config_host = 'https://notifier-configs.airbrake.io'

self.ignore_environments = []

Expand Down
2 changes: 1 addition & 1 deletion spec/config_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
its(:error_notifications) { is_expected.to eq(true) }

its(:remote_config_host) do
is_expected.to eq('https://v1-production-notifier-configs.s3.amazonaws.com')
is_expected.to eq('https://notifier-configs.airbrake.io')
end

describe "#new" do
Expand Down

0 comments on commit 959d615

Please sign in to comment.