Browse Source

*: fix wrong format type

pull/5340/head
Unknwon 7 years ago
parent
commit
7856b1202d
No known key found for this signature in database
GPG Key ID: 7A02C406FAC875A2
  1. 2
      models/mirror.go
  2. 2
      pkg/auth/ldap/ldap.go

2
models/mirror.go

@ -362,7 +362,7 @@ func MirrorUpdate() {
func SyncMirrors() {
// Start listening on new sync requests.
for repoID := range MirrorQueue.Queue() {
log.Trace("SyncMirrors [repo_id: %d]", repoID)
log.Trace("SyncMirrors [repo_id: %s]", repoID)
MirrorQueue.Remove(repoID)
m, err := GetMirrorByRepoID(com.StrTo(repoID).MustInt64())

2
pkg/auth/ldap/ldap.go

@ -178,7 +178,7 @@ func bindUser(l *ldap.Conn, userDN, passwd string) error {
func (ls *Source) SearchEntry(name, passwd string, directBind bool) (string, string, string, string, bool, bool) {
// See https://tools.ietf.org/search/rfc4513#section-5.1.2
if len(passwd) == 0 {
log.Trace("authentication failed for '%s' with empty password")
log.Trace("authentication failed for '%s' with empty password", name)
return "", "", "", "", false, false
}
l, err := dial(ls)

Loading…
Cancel
Save