Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions fastpath/debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
fastpath (0.85) unstable; urgency=medium

* Recognize Web Connectivity v0.5 "tls" blocking type

-- Simone Basso <[email protected]> Tue, 25 Jan 2024 11:47:55 +0100

fastpath (0.84) unstable; urgency=medium

* Support ooni_run_link_id
Expand Down
2 changes: 1 addition & 1 deletion fastpath/fastpath/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -999,7 +999,7 @@ def score_web_connectivity(msm: dict, matches: list) -> dict:
# TODO: refactor to apply to all test types

# anomaly
blocking_types = ("tcp_ip", "dns", "http-diff", "http-failure")
blocking_types = ("tcp_ip", "dns", "http-diff", "http-failure", "tls")
probe_blocking = tk.get("blocking")
if probe_blocking in blocking_types:
scores["blocking_general"] = 1.0
Expand Down