Skip to content

Commit

Permalink
Merge pull request #133 from rollbar/fix-failsafe
Browse files Browse the repository at this point in the history
fix failsafe function
  • Loading branch information
ezarowny authored Sep 16, 2016
2 parents e797bd4 + 059d4e1 commit 28a7b42
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rollbar/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -1227,7 +1227,7 @@ def _send_failsafe(message, uuid, host):
payload = _build_payload(data)

try:
send_payload(payload, SETTINGS['access_token'], uuid, host)
send_payload(payload, SETTINGS['access_token'])
except Exception:
log.exception('Rollbar: Error sending failsafe.')

Expand Down

0 comments on commit 28a7b42

Please sign in to comment.