From a3de34f544bc94ebe8c56854a1e0f50787a508dd Mon Sep 17 00:00:00 2001 From: Igor Gov Date: Thu, 24 Mar 2022 20:40:16 +0200 Subject: [PATCH] Turn OAS feature ON by default (#927) * Turn OAS feature ON by default --- cli/config/configStruct.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/config/configStruct.go b/cli/config/configStruct.go index 3f77fcfc5..99dbdb762 100644 --- a/cli/config/configStruct.go +++ b/cli/config/configStruct.go @@ -40,7 +40,7 @@ type ConfigStruct struct { HeadlessMode bool `yaml:"headless" default:"false"` LogLevelStr string `yaml:"log-level,omitempty" default:"INFO" readonly:""` ServiceMap bool `yaml:"service-map" default:"true"` - OAS bool `yaml:"oas,omitempty" default:"false" readonly:""` + OAS bool `yaml:"oas" default:"true"` Elastic shared.ElasticConfig `yaml:"elastic"` }