-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
moved request data to a separate .json file and fixed failing specs
- Loading branch information
1 parent
c8b53ef
commit f8a1e06
Showing
4 changed files
with
58 additions
and
62 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
{"exception": | ||
{"values": | ||
[{"stacktrace": | ||
{"frames": | ||
[{"function":"<module>", | ||
"abs_path":"./testing.py", | ||
"pre_context": | ||
["import pdb, raven, os", | ||
"", | ||
"client = raven.Client(dsn= 'http://01823eb4e74f172b7df08d682f36eedc:39fc7ea388a3be5e13f459d942ac94b1@localhost:3000/39fc7ea388a3be5e13f459d942ac94b1')", | ||
"", | ||
"try:"], | ||
"post_context":["except ZeroDivisionError:", " client.captureException()"], | ||
"vars": | ||
{"__builtins__":"<module '__builtin__' (built-in)>", | ||
"__file__":"'./testing.py'", | ||
"__package__":null, | ||
"client":"<raven.base.Client object at 0x7fa3f82cbd90>", | ||
"__doc__":null, | ||
"__name__":"'__main__'", | ||
"os":"<module 'os' from '/usr/lib/python2.7/os.pyc'>", | ||
"pdb":"<module 'pdb' from '/usr/lib/python2.7/pdb.py'>", | ||
"raven":"<module 'raven' from '/home/hyperionel/.local/lib/python2.7/site-packages/raven/__init__.pyc'>"}, | ||
"module":"__main__", | ||
"filename":"testing.py", | ||
"lineno":8, | ||
"context_line":" 1 / 0"}]}, | ||
"type":"ZeroDivisionError", | ||
"module":"exceptions", | ||
"value":"integer division or modulo by zero"}]}, | ||
"culprit":"__main__ in <module>", | ||
"server_name":"hyperionel", | ||
"extra":{"sys.argv":["'./testing.py'"]}, | ||
"event_id":"e7f31444bf1e425dbdbb8411b2dbc0d0", | ||
"timestamp":1463040891, | ||
"level":40, | ||
"modules":{"python":"2.7.10"}, | ||
"time_spent":null, | ||
"platform":"python", | ||
"message":"ZeroDivisionError: integer division or modulo by zero", | ||
"tags":{}, | ||
"sdk":{"version":"5.15.0", "name":"raven-python"}, | ||
"website":1, | ||
"errors":[], | ||
"interfaces":{}, | ||
"site":null, | ||
"checksum":null} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters