You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 5, 2026. It is now read-only.
fix: limit DRS delays to slow-start phases, add media download E2E tests
DRS inter-record delays still throttled sustained downloads in v3.5.1 —
the burst threshold (16KB) fired at batch boundaries during streaming.
Now delays only apply during phases 1+2 (first ~60 records, ~140KB).
Phase 3 (max-size records) runs at full TCP speed. The DRS counter
resets after 1s inactivity so new responses still get realistic timing.
Add multi-size media download E2E tests (1/20/100 MB) through both
obfuscated2 and fake-TLS proxy modes with SHA256 integrity verification.
These catch DRS delay regressions that throttle large transfers.
Closes#70
Copy file name to clipboardExpand all lines: CHANGELOG.md
+9Lines changed: 9 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,15 @@
2
2
3
3
All notable changes to this project will be documented in this file.
4
4
5
+
## [3.5.2] - 2026-03-28
6
+
7
+
### Fixed
8
+
-**DRS delays still throttled sustained downloads** — delays are now limited to slow-start phases only (first ~60 records, ~140KB). Once the connection reaches phase 3 (max-size TLS records), all delays are skipped. The DRS counter resets after 1s of inactivity, so new responses still get realistic slow-start timing. This fully resolves media download degradation reported in [#70](https://github.com/GetPageSpeed/MTProxy/issues/70)
9
+
10
+
### Added
11
+
-**Media download E2E tests** — CI now downloads pre-saved files (1 MB, 20 MB, 100 MB) through both obfuscated2 and fake-TLS proxy modes, verifying data integrity and throughput. Catches DRS delay regressions that throttle large transfers
12
+
- DRS bulk transfer delay bounds test in Docker test suite
0 commit comments