OLD | NEW |
---|---|
1 # Chrome Network Bug Triage : Suggested Workflow | 1 # Chrome Network Bug Triage : Suggested Workflow |
2 | 2 |
3 [TOC] | 3 [TOC] |
4 | 4 |
5 ## Identifying unlabeled network bugs on the tracker | 5 ## Identifying unlabeled network bugs on the tracker |
6 | 6 |
7 * Look at new uncomfirmed bugs since noon PST on the last triager's rotation. | 7 * Look at new unconfirmed bugs since noon PST on the last triager's rotation. |
mmenke
2016/06/22 16:48:10
Google style guide calls for consistency, and the
| |
8 [Use this issue tracker | 8 [Use this issue tracker |
9 query](https://code.google.com/p/chromium/issues/list?can=2&q=status%3Aunconfi rmed&sort=-id&num=1000). | 9 query](https://code.google.com/p/chromium/issues/list?can=2&q=status%3Aunconfi rmed&sort=-id&num=1000). |
10 | 10 |
11 * Read the title of the bug. | 11 * Read the title of the bug. |
12 | 12 |
13 * If a bug looks like it might be network/download/safe-browsing related, | 13 * If a bug looks like it might be network/download/safe-browsing related, |
14 middle click (or command-click on OSX) to open it in a new tab. | 14 middle click (or command-click on OSX) to open it in a new tab. |
15 | 15 |
16 * If a user provides a crash ID for a crasher for a bug that could be | 16 * If a user provides a crash ID for a crasher for a bug that could be |
17 net-related, look at the crash stack at | 17 net-related, look at the crash stack at |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
51 | 51 |
52 * It's recommended that while on triage duty, you subscribe to the | 52 * It's recommended that while on triage duty, you subscribe to the |
53 Internals>Network component (but not its subcomponents). To do this, go | 53 Internals>Network component (but not its subcomponents). To do this, go |
54 to the issue tracker and then click "Saved Queries". | 54 to the issue tracker and then click "Saved Queries". |
55 Add a query with these settings: | 55 Add a query with these settings: |
56 * Saved query name: Network Bug Triage | 56 * Saved query name: Network Bug Triage |
57 * Project: chromium | 57 * Project: chromium |
58 * Query: component=Internals>Network | 58 * Query: component=Internals>Network |
59 * Subscription options: Notify Immediately | 59 * Subscription options: Notify Immediately |
60 | 60 |
61 * Look through uncomfirmed and untriaged component=Internals>Network bugs, | 61 * Look through unconfirmed and untriaged component=Internals>Network bugs, |
62 prioritizing those updated within the last week. [Use this issue tracker | 62 prioritizing those updated within the last week. [Use this issue tracker |
63 query](https://bugs.chromium.org/p/chromium/issues/list?can=2&q=component%3DIn ternals%3ENetwork+status%3AUnconfirmed,Untriaged+-label:Needs-Feedback&sort=-mod ified). | 63 query](https://bugs.chromium.org/p/chromium/issues/list?can=2&q=component%3DIn ternals%3ENetwork+status%3AUnconfirmed,Untriaged+-label:Needs-Feedback&sort=-mod ified). |
64 | 64 |
65 * If more information is needed from the reporter, ask for it and add the | 65 * If more information is needed from the reporter, ask for it and add the |
66 Needs-Feedback label. | 66 Needs-Feedback label. |
67 | 67 |
68 * While investigating a new issue, change the status to Untriaged. | 68 * While investigating a new issue, change the status to Untriaged. |
69 | 69 |
70 * If a bug is a potential security issue (Allows for code execution from remote | 70 * If a bug is a potential security issue (Allows for code execution from remote |
71 site, allows crossing security boundaries, unchecked array bounds, etc) mark | 71 site, allows crossing security boundaries, unchecked array bounds, etc) mark |
(...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
202 a crash report, and seeing if there are multiple reports for the same crash. | 202 a crash report, and seeing if there are multiple reports for the same crash. |
203 If this is the case, it may be also be malware, or an issue with an unusual | 203 If this is the case, it may be also be malware, or an issue with an unusual |
204 system/chrome/network config. | 204 system/chrome/network config. |
205 | 205 |
206 * Dig through crash reports to figure out when the crash first appeared, and | 206 * Dig through crash reports to figure out when the crash first appeared, and |
207 dig through revision history in related files to try and locate a suspect CL. | 207 dig through revision history in related files to try and locate a suspect CL. |
208 TODO(mmenke): Add more detail here. | 208 TODO(mmenke): Add more detail here. |
209 | 209 |
210 * Load crash dumps, try to figure out a cause. See | 210 * Load crash dumps, try to figure out a cause. See |
211 http://www.chromium.org/developers/crash-reports for more information | 211 http://www.chromium.org/developers/crash-reports for more information |
OLD | NEW |