Closed
Bug 1197000
Opened 10 years ago
Closed 10 years ago
Better debugging output for Safe Browsing list updates
Categories
(Toolkit :: Safe Browsing, defect)
Toolkit
Safe Browsing
Tracking
()
RESOLVED
FIXED
mozilla43
| Tracking | Status | |
|---|---|---|
| firefox43 | --- | fixed |
People
(Reporter: francois, Assigned: francois)
Details
Attachments
(1 file)
While debugging https://github.com/mozilla-services/shavar/issues/28, I tweaked a bunch of the existing PR_LOGs to make it easier to debug problems with the update server.
| Assignee | ||
Comment 1•10 years ago
|
||
Bug 1197000 - Better debugging output for Safe Browsing list updates. r?gcp
Attachment #8650769 -
Flags: review?(gpascutto)
Comment 2•10 years ago
|
||
Comment on attachment 8650769 [details]
MozReview Request: Bug 1197000 - Better debugging output for Safe Browsing list updates. r?gcp
https://reviewboard.mozilla.org/r/16681/#review14979
::: toolkit/components/url-classifier/nsUrlClassifierStreamUpdater.cpp:484
(Diff revision 1)
> - rv = httpChannel->GetResponseStatus(&requestStatus);
> + rv = httpChannel->GetResponseStatus(&requestStatus);
You're now doing this call even in the non-failure case. Probably want to move this inside the if?
Attachment #8650769 -
Flags: review?(gpascutto)
| Assignee | ||
Comment 3•10 years ago
|
||
Comment on attachment 8650769 [details]
MozReview Request: Bug 1197000 - Better debugging output for Safe Browsing list updates. r?gcp
(In reply to Gian-Carlo Pascutto [:gcp] from comment #2)
> ::: toolkit/components/url-classifier/nsUrlClassifierStreamUpdater.cpp:484
> (Diff revision 1)
> > - rv = httpChannel->GetResponseStatus(&requestStatus);
> > + rv = httpChannel->GetResponseStatus(&requestStatus);
>
> You're now doing this call even in the non-failure case. Probably want to
> move this inside the if?
Actually, I was thinking it would be useful even in the "succeeded" case, for example to differentiate between a 200 and a 204.
Attachment #8650769 -
Flags: review?(gpascutto)
Comment 4•10 years ago
|
||
Comment on attachment 8650769 [details]
MozReview Request: Bug 1197000 - Better debugging output for Safe Browsing list updates. r?gcp
https://reviewboard.mozilla.org/r/16681/#review15001
Ship It!
Attachment #8650769 -
Flags: review?(gpascutto) → review+
| Assignee | ||
Comment 5•10 years ago
|
||
Comment 7•10 years ago
|
||
Status: ASSIGNED → RESOLVED
Closed: 10 years ago
status-firefox43:
--- → fixed
Resolution: --- → FIXED
Target Milestone: --- → mozilla43
You need to log in
before you can comment on or make changes to this bug.
Description
•