From 6cac28bc2d646cd9d26c77d9da1012204c70a9d3 Mon Sep 17 00:00:00 2001 From: Dakota Paasman <122491662+dpaasman00@users.noreply.github.com> Date: Thu, 29 Aug 2024 07:26:06 -0400 Subject: [PATCH] chore: Disable confmap featuregate (#1820) disable confmap featuregate --- collector/featuregates.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/collector/featuregates.go b/collector/featuregates.go index 18be32909..131d4f3cd 100644 --- a/collector/featuregates.go +++ b/collector/featuregates.go @@ -31,9 +31,6 @@ func SetFeatureFlags() error { if err := featuregate.GlobalRegistry().Set("filelog.mtimeSortType", true); err != nil { return fmt.Errorf("failed to enable filelog.mtimeSortType: %w", err) } - if err := featuregate.GlobalRegistry().Set("confmap.strictlyTypedInput", false); err != nil { - return fmt.Errorf("failed to disable confmap.strictlyTypedInput: %w", err) - } return nil }