Closed
Bug 809620
Opened 12 years ago
Closed 12 years ago
[socorro-crashstats] certain date range for Firefox 19.0a1 in plot_signature throws a 500
Categories
(Socorro :: Webapp, task)
Socorro
Webapp
Tracking
(Not tracked)
VERIFIED
FIXED
People
(Reporter: stephend, Assigned: rhelmer)
References
()
Details
Assignee | ||
Comment 1•12 years ago
|
||
Traceback:
File "/home/rhelmer/src/socorro-crashstats/vendor/lib/python/django/core/handlers/base.py" in get_response
111. response = callback(request, *callback_args, **callback_kwargs)
File "/home/rhelmer/src/socorro-crashstats/crashstats/crashstats/views.py" in inner
155. return view(request, *args, **kwargs)
File "/home/rhelmer/src/socorro-crashstats/crashstats/crashstats/utils.py" in wrapper
32. response = f(*args, **kw)
File "/home/rhelmer/src/socorro-crashstats/crashstats/crashstats/views.py" in plot_signature
1349. sigtrend = api.get(product, versions, signature, end_date, duration)
File "/home/rhelmer/src/socorro-crashstats/crashstats/crashstats/models.py" in get
607. return self.fetch(url)
File "/home/rhelmer/src/socorro-crashstats/crashstats/crashstats/models.py" in fetch
126. raise BadStatusCodeError('%s: on: %s' % (resp.status_code, url))
Exception Type: BadStatusCodeError at /topcrasher/plot_signature/Firefox/19.0a1/2012-10-28/2012-11-04/
Exception Value: 404: on: http://socorro1.dev.dmz.phx1.mozilla.com/bpapi/topcrash/sig/trend/history/p/Firefox/v/19.0a1/sig//end/2012-11-04/duration/168/steps/60
Comment 2•12 years ago
|
||
Seems like this is a candidate for forms?
Assignee | ||
Comment 3•12 years ago
|
||
(In reply to Schalk Neethling [:espressive] from comment #2)
> Seems like this is a candidate for forms?
There are no HTTP params here, we could do more input validation but we'd still need to be able to handle 404 here.
Assignee | ||
Updated•12 years ago
|
Assignee: nobody → rhelmer
Assignee | ||
Updated•12 years ago
|
Status: NEW → ASSIGNED
Assignee | ||
Comment 4•12 years ago
|
||
Comment 5•12 years ago
|
||
Commits pushed to master at https://github.com/mozilla/socorro-crashstats
https://github.com/mozilla/socorro-crashstats/commit/70151ef3d14a027379a6c9c5629116da1e0d833c
bug 809620 - need to check that signature is specified, have to pass something to the model
https://github.com/mozilla/socorro-crashstats/commit/b65b1ec49d2c74e51c399459e64d233cb4785691
Merge pull request #285 from rhelmer/bug809620-handle-plot-signature-404
bug 809620 - need to check that signature is specified, have to pass som...
Assignee | ||
Updated•12 years ago
|
Status: ASSIGNED → RESOLVED
Closed: 12 years ago
Resolution: --- → FIXED
Reporter | ||
Comment 6•12 years ago
|
||
Verified FIXED:
[10:14:29.068] GET http://crash-stats-new-dev.allizom.org/topcrasher/plot_signature/Firefox/19.0a1/2012-10-28/2012-11-04/ [HTTP/1.1 400 BAD REQUEST 21400ms]
signature is required
Status: RESOLVED → VERIFIED
You need to log in
before you can comment on or make changes to this bug.
Description
•