|
96 | 96 | # single HTTP connection open, fully idle, while the backend computes the diff; network |
97 | 97 | # middleboxes with TCP idle timeouts (notably Azure NAT gateways, which default to |
98 | 98 | # 4 minutes) kill that connection with a RST, surfacing as an intermittent |
99 | | -# ConnectionResetError on large scans (CE-354). The diff-scans flow instead creates a |
| 99 | +# ConnectionResetError on large scans. The diff-scans flow instead creates a |
100 | 100 | # diff-scan resource and polls its cached endpoint with short bounded requests: the API |
101 | 101 | # answers 202 while the comparison is still computing and 200 with the result once it is |
102 | 102 | # ready, so no connection is ever idle long enough to be reaped. |
@@ -1333,8 +1333,8 @@ def get_diff_scan_artifacts( |
1333 | 1333 | ``GET /orgs/{org}/diff-scans/{id}?cached=true`` until the API returns the |
1334 | 1334 | computed comparison (200) instead of a processing status (202). Unlike the |
1335 | 1335 | legacy ``fullscans.stream_diff`` call, no request is ever left idle while |
1336 | | - the backend computes, so the comparison survives network idle timeouts |
1337 | | - (CE-354). See the DIFF_SCAN_POLL_* constants for the polling policy. |
| 1336 | + the backend computes, so the comparison survives network idle timeouts. |
| 1337 | + See the DIFF_SCAN_POLL_* constants for the polling policy. |
1338 | 1338 |
|
1339 | 1339 | Requires an org token with the ``diff-scans:create``, ``diff-scans:list`` |
1340 | 1340 | and ``full-scans:list`` scopes; callers are expected to catch failures and |
@@ -1394,7 +1394,7 @@ def get_diff_scan_artifacts( |
1394 | 1394 | # ready). The API ignores omit_license_details when cached=true - cached |
1395 | 1395 | # results always embed license details - so there is no lean-response |
1396 | 1396 | # option on this path (unlike stream_diff with |
1397 | | - # include_license_details=false, the CE-224 mitigation). If that extra |
| 1397 | + # include_license_details=false, the lean-payload mitigation). If that extra |
1398 | 1398 | # payload ever gets a response truncated on a huge dependency tree, |
1399 | 1399 | # response.json() fails and the caller falls back to the legacy |
1400 | 1400 | # streaming comparison, which still requests the lean payload. |
|
0 commit comments