Reduce logging data races, fix MySQL test race condition (#7994)

* fix races

* revert unintentional change

* fix test as intended
This commit is contained in:
Chris
2017-12-22 06:09:33 -06:00
committed by George Goldberg
parent 5189e8ea10
commit 91bfc72a99
54 changed files with 8 additions and 190 deletions

View File

@@ -6,14 +6,10 @@ package api4
import (
"net/http"
l4g "github.com/alecthomas/log4go"
"github.com/mattermost/mattermost-server/model"
"github.com/mattermost/mattermost-server/utils"
)
func (api *API) InitLdap() {
l4g.Debug(utils.T("api.ldap.init.debug"))
api.BaseRoutes.LDAP.Handle("/sync", api.ApiSessionRequired(syncLdap)).Methods("POST")
api.BaseRoutes.LDAP.Handle("/test", api.ApiSessionRequired(testLdap)).Methods("POST")
}