Method: Honeybadger::Agent#check_in
- Defined in:
- lib/honeybadger/agent.rb
permalink #check_in(id) ⇒ Boolean
Perform a synchronous check_in.
205 206 207 208 209 210 |
# File 'lib/honeybadger/agent.rb', line 205 def check_in(id) # this is to allow check ins even if a url is passed check_in_id = id.to_s.strip.gsub(/\/$/, '').split('/').last response = backend.check_in(check_in_id) response.success? end |