We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 04d424f commit 2bd91b6Copy full SHA for 2bd91b6
internal/settings/settings.go
@@ -78,7 +78,11 @@ var DefaultAgentConfigWindows = func() string {
78
return filepath.Clean(path)
79
}()
80
81
-var defaultFeatureGates = []string{}
+var defaultFeatureGates = []string{
82
+ // Remove the feature gates once we deprecate our env var expansion mechanism and adopt the upstream env
83
+ "-confmap.strictlyTypedInput",
84
+ "-confmap.unifyEnvVarExpansion",
85
+}
86
87
type Settings struct {
88
discovery *discovery.Provider
0 commit comments