Skip to content

Commit ef80dc1

Browse files
committed
fix(config): Fix invalid yaml param config
1 parent 0249a73 commit ef80dc1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

auth_providers/command_config.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ type Server struct {
3737
AuthProvider AuthProvider `json:"auth_provider,omitempty" yaml:"auth_provider,omitempty"` // AuthProvider contains the authentication provider details.
3838
SkipTLSVerify bool `json:"skip_tls_verify,omitempty" yaml:"skip_tls_verify,omitempty"` // TLSVerify determines whether to verify the TLS certificate.
3939
CACertPath string `json:"ca_cert_path,omitempty" yaml:"ca_cert_path,omitempty"` // CACertPath is the path to the CA certificate to trust.
40-
AuthType string `json:"auth_type,omitempty" yaml:"auth_type, omitempty"` // AuthType is the type of authentication to use.
40+
AuthType string `json:"auth_type,omitempty" yaml:"auth_type,omitempty"` // AuthType is the type of authentication to use.
4141

4242
}
4343

0 commit comments

Comments
 (0)