Skip to content

Commit

Permalink
bug 1380761 - deprecation warning on /api/AduBySignature/ (#3861)
Browse files Browse the repository at this point in the history
  • Loading branch information
Peter Bengtsson committed Jul 21, 2017
1 parent cbe62c9 commit f0982da
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions webapp-django/crashstats/crashstats/models.py
Expand Up @@ -41,12 +41,6 @@
from crashstats.base.utils import requests_retry_session


DEPRECATION_RAMPAGE_WARNING = (
'This endpoint is deprecated and will soon cease to exist.\n'
'Please see https://bugzilla.mozilla.org/show_bug.cgi?id=1314814'
)


logger = logging.getLogger('crashstats_models')


Expand Down Expand Up @@ -1088,6 +1082,11 @@ class AduBySignature(SocorroMiddleware):

implementation = socorro.external.postgresql.crashes.AduBySignature

deprecation_warning = (
'This endpoint is deprecated and will soon cease to exist.\n'
'Please see https://bugzilla.mozilla.org/show_bug.cgi?id=1380761'
)

required_params = (
'product_name',
'signature',
Expand Down

0 comments on commit f0982da

Please sign in to comment.