sentry-ruby: Timing out on getsentry.com (Europe Region)

Hi,

I’ve signed up at getsentry.com and installed the gem from source, e.g. in Gemfile I have:

gem 'sentry-raven', :git => "https://github.com/getsentry/raven-ruby.git"

I run the test command bundle exec rake raven:test and get the following error:

I, [2013-10-11T22:28:24.700397 #7352]  INFO -- : ** [Raven] Raven 0.6.0 ready to catch errors
Client configuration:
-> server: https://app.getsentry.com
-> project_id: 12345
-> public_key: xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
-> secret_key: xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx

Sending a test event:
-> ** [Raven] Unable to record event with remote Sentry server (Faraday::Error::TimeoutError - execution expired)

An error occurred while attempting to send the event.

It happens pretty fast, so I don’t think there is an actual timeout happening.

Any ideas?

About this issue

  • Original URL
  • State: closed
  • Created 11 years ago
  • Comments: 16 (11 by maintainers)

Most upvoted comments

For others reading this wondering like me how to tweak the settings, here is a full example:

Raven.configure do |config|
  # The default timeouts are too short on slow networks.
  config.timeout = 10
  config.open_timeout = 10
end