From 7db8a4bc8d06f96b8477ec5da5decd797733895f Mon Sep 17 00:00:00 2001 From: zachmu Date: Mon, 9 Dec 2024 19:40:20 +0000 Subject: [PATCH] [ga-format-pr] Run go/utils/repofmt/format_repo.sh and go/Godeps/update.sh --- .../doltcore/servercfg/yaml_config.go | 26 +++++++++---------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/go/libraries/doltcore/servercfg/yaml_config.go b/go/libraries/doltcore/servercfg/yaml_config.go index ccf3190960..1eeae40215 100644 --- a/go/libraries/doltcore/servercfg/yaml_config.go +++ b/go/libraries/doltcore/servercfg/yaml_config.go @@ -124,20 +124,20 @@ type UserSessionVars struct { // YAMLConfig is a ServerConfig implementation which is read from a yaml file type YAMLConfig struct { - LogLevelStr *string `yaml:"log_level,omitempty"` - MaxQueryLenInLogs *int `yaml:"max_logged_query_len,omitempty"` - EncodeLoggedQuery *bool `yaml:"encode_logged_query,omitempty"` - BehaviorConfig BehaviorYAMLConfig `yaml:"behavior"` - UserConfig UserYAMLConfig `yaml:"user"` - ListenerConfig ListenerYAMLConfig `yaml:"listener"` + LogLevelStr *string `yaml:"log_level,omitempty"` + MaxQueryLenInLogs *int `yaml:"max_logged_query_len,omitempty"` + EncodeLoggedQuery *bool `yaml:"encode_logged_query,omitempty"` + BehaviorConfig BehaviorYAMLConfig `yaml:"behavior"` + UserConfig UserYAMLConfig `yaml:"user"` + ListenerConfig ListenerYAMLConfig `yaml:"listener"` PerformanceConfig *PerformanceYAMLConfig `yaml:"performance,omitempty"` - DataDirStr *string `yaml:"data_dir,omitempty"` - CfgDirStr *string `yaml:"cfg_dir,omitempty"` - MetricsConfig MetricsYAMLConfig `yaml:"metrics"` - RemotesapiConfig RemotesapiYAMLConfig `yaml:"remotesapi"` - ClusterCfg *ClusterYAMLConfig `yaml:"cluster,omitempty"` - PrivilegeFile *string `yaml:"privilege_file,omitempty"` - BranchControlFile *string `yaml:"branch_control_file,omitempty"` + DataDirStr *string `yaml:"data_dir,omitempty"` + CfgDirStr *string `yaml:"cfg_dir,omitempty"` + MetricsConfig MetricsYAMLConfig `yaml:"metrics"` + RemotesapiConfig RemotesapiYAMLConfig `yaml:"remotesapi"` + ClusterCfg *ClusterYAMLConfig `yaml:"cluster,omitempty"` + PrivilegeFile *string `yaml:"privilege_file,omitempty"` + BranchControlFile *string `yaml:"branch_control_file,omitempty"` // TODO: Rename to UserVars_ Vars []UserSessionVars `yaml:"user_session_vars"` SystemVars_ map[string]interface{} `yaml:"system_variables,omitempty" minver:"1.11.1"`