Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
26 lines
715 B
Diff
26 lines
715 B
Diff
From a46bc88829282032ab1d68ef6d67d25421ab8d32 Mon Sep 17 00:00:00 2001
|
|
From: Gabriel Simmer <g@gmem.ca>
|
|
Date: Fri, 21 Jul 2023 08:16:52 +0100
|
|
Subject: [PATCH] Disable auto update
|
|
|
|
---
|
|
internal/config/config.go | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/internal/config/config.go b/internal/config/config.go
|
|
index 04583ca5..1b085b55 100644
|
|
--- a/internal/config/config.go
|
|
+++ b/internal/config/config.go
|
|
@@ -173,7 +173,7 @@ func (cfg *Config) applyFile(path string) (err error) {
|
|
SyntheticsAgent bool `yaml:"synthetics_agent"`
|
|
}
|
|
w.SendMetrics = true
|
|
- w.AutoUpdate = true
|
|
+ w.AutoUpdate = false
|
|
w.SyntheticsAgent = true
|
|
|
|
if err = unmarshal(path, &w); err == nil {
|
|
--
|
|
2.45.2
|
|
|