浏览代码

lib/config: Correct spelling of address in LDAP config (#6420)

Literally noone uses this so I don't see a need to call this out or
trigger a 1.5 release for it.
Jakob Borg 5 年之前
父节点
当前提交
80107d5f5e
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      lib/config/ldapconfiguration.go

+ 1 - 1
lib/config/ldapconfiguration.go

@@ -7,7 +7,7 @@
 package config
 
 type LDAPConfiguration struct {
-	Address            string        `xml:"address,omitempty" json:"addresd"`
+	Address            string        `xml:"address,omitempty" json:"address"`
 	BindDN             string        `xml:"bindDN,omitempty" json:"bindDN"`
 	Transport          LDAPTransport `xml:"transport,omitempty" json:"transport"`
 	InsecureSkipVerify bool          `xml:"insecureSkipVerify,omitempty" json:"insecureSkipVerify" default:"false"`