Skip to content

Commit

Permalink
ref: remove error handlers from sentry.conf.urls
Browse files Browse the repository at this point in the history
  • Loading branch information
asottile-sentry committed Oct 18, 2024
1 parent 0ecd4fa commit a8267dd
Showing 1 changed file with 2 additions and 8 deletions.
10 changes: 2 additions & 8 deletions src/sentry/conf/urls.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,5 @@
from __future__ import annotations

from sentry.web.frontend.error_404 import Error404View
from sentry.web.frontend.error_500 import Error500View
from sentry.web.urls import urlpatterns as web_urlpatterns
from sentry.web.urls import urlpatterns

# XXX: remove after getsentry does not reference these
handler404 = Error404View.as_view()
handler500 = Error500View.as_view()

urlpatterns = web_urlpatterns
__all__ = ("urlpatterns",)

0 comments on commit a8267dd

Please sign in to comment.