mirror of https://github.com/gogs/gogs.git
*: fix wrong format type
parent
e5ddbcab7d
commit
7856b1202d
|
@ -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())
|
||||
|
|
|
@ -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…
Reference in New Issue