Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Temporarily disable 0.5 since it's not collecting network_events #806

Merged
merged 4 commits into from
Feb 22, 2024
Merged
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 api/debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
ooni-api (1.0.89) unstable; urgency=medium

* Disable web_connectivity 0.5 feature flag

-- Arturo <arturo@ooni.org> Wed, 21 Feb 2024 16:25:18 +0100

ooni-api (1.0.88) unstable; urgency=medium

* Add more logging
Expand Down
9 changes: 6 additions & 3 deletions api/ooniapi/probe_services.py
Original file line number Diff line number Diff line change
Expand Up @@ -276,9 +276,12 @@ def check_in() -> Response:
)

# set webconnectivity_0.5 feature flag for some probes
octect = extract_probe_ipaddr_octect(1, 0)
if octect in (34, 239):
conf["features"]["webconnectivity_0.5"] = True
# Temporarily disabled while we work towards deploying this in prod:
# https://github.com/ooni/probe/issues/2674
#
#octect = extract_probe_ipaddr_octect(1, 0)
#if octect in (34, 239):
# conf["features"]["webconnectivity_0.5"] = True

conf["test_helpers"] = generate_test_helpers_conf()

Expand Down
Loading