diff options
Diffstat (limited to 'lib/sentry/client.rb')
-rw-r--r-- | lib/sentry/client.rb | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/sentry/client.rb b/lib/sentry/client.rb index 490f82c4678..8898960c24d 100644 --- a/lib/sentry/client.rb +++ b/lib/sentry/client.rb @@ -5,6 +5,8 @@ module Sentry include Sentry::Client::Event include Sentry::Client::Projects include Sentry::Client::Issue + include Sentry::Client::Repo + include Sentry::Client::IssueLink Error = Class.new(StandardError) MissingKeysError = Class.new(StandardError) @@ -79,7 +81,7 @@ module Sentry end def handle_response(response) - unless response.code == 200 + unless response.code.between?(200, 204) raise_error "Sentry response status code: #{response.code}" end |