zugaldia / appython

A template for Python apps on Google App Engine.
http://com-zugaldia-appython.appspot.com
Apache License 2.0
0 stars 0 forks source link

Make Raven/Sentry async #1

Open zugaldia opened 9 years ago

zugaldia commented 9 years ago

Unfortunately, the default, thread-based, method of submitting errors to Sentry doesn't work in App Engine and we've switched to the sync one (see sync+https:// in the config.py file). Fix it to make it async.

zugaldia commented 9 years ago

There's a workaround for Java: https://github.com/getsentry/raven-java/blob/master/raven-appengine/README.md. Maybe we can port that to Python.