Skip to content

Commit

Permalink
feat(fastpath): recognize tls blocking type
Browse files Browse the repository at this point in the history
  • Loading branch information
bassosimone committed Jan 25, 2024
1 parent 48a4634 commit 5f61b33
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
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

0 comments on commit 5f61b33

Please sign in to comment.