summaryrefslogtreecommitdiff
path: root/constants/constants.go
diff options
context:
space:
mode:
authorWill Hawkins <[email protected]>2022-05-11 16:49:09 -0400
committerWill Hawkins <[email protected]>2022-05-11 16:49:09 -0400
commitfdfe96b53ef8f4532e5b6f65f86ba39fe242cc5b (patch)
tree22186a27e1a4dae9e338a683a3c1f08197bffca0 /constants/constants.go
parent49301ae7f6ef1c479fe3b23cba29d74a815d15ee (diff)
[Refactor/Bugfix] Refactor RPM calculation and fix calculation algorithm
As it turns out, I was misreading the algorithm for calculating the RPM based upon the measurements taken during execution. This patch fixes that mistake and also (starts) renames "RTT" as "measurement" (those are technically a better nomenclature according to the spec.)
Diffstat (limited to 'constants/constants.go')
-rw-r--r--constants/constants.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/constants/constants.go b/constants/constants.go
index 1a060dd..2f906b6 100644
--- a/constants/constants.go
+++ b/constants/constants.go
@@ -30,4 +30,7 @@ var (
DefaultDebug bool = false
// The default URL for the config host.
DefaultConfigHost string = "networkquality.example.com"
+
+ // The default decision about whether to run the test in strict mode.
+ DefaultStrict bool = false
)