From 340cd826ffe42b6b34a660aee3370e571436e15c Mon Sep 17 00:00:00 2001 From: Yeganathan S Date: Tue, 15 Mar 2022 20:54:21 +0530 Subject: [PATCH] fix: experimental should be unattended (#704) See https://github.com/ooni/probe/issues/2056 --- cmd/ooniprobe/internal/nettests/groups.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/cmd/ooniprobe/internal/nettests/groups.go b/cmd/ooniprobe/internal/nettests/groups.go index 6ef6592..a2a5370 100644 --- a/cmd/ooniprobe/internal/nettests/groups.go +++ b/cmd/ooniprobe/internal/nettests/groups.go @@ -22,6 +22,8 @@ var All = map[string]Group{ Dash{}, NDT{}, }, + // unattendedOK is explicitly set to false, since there is no need for consumption of excessive amounts of data with background tests + UnattendedOK: false, }, "middlebox": { Label: "Middleboxes", @@ -56,5 +58,6 @@ var All = map[string]Group{ STUNReachability{}, TorSf{}, }, + UnattendedOK: true, }, }