From 91bfc72a99477b6d611b13e225786e3ca7add10c Mon Sep 17 00:00:00 2001 From: Chris Date: Fri, 22 Dec 2017 06:09:33 -0600 Subject: Reduce logging data races, fix MySQL test race condition (#7994) * fix races * revert unintentional change * fix test as intended --- api/oauth.go | 4 ---- 1 file changed, 4 deletions(-) (limited to 'api/oauth.go') diff --git a/api/oauth.go b/api/oauth.go index c8a228a7b..2fc83d122 100644 --- a/api/oauth.go +++ b/api/oauth.go @@ -6,15 +6,11 @@ package api import ( "net/http" - l4g "github.com/alecthomas/log4go" "github.com/gorilla/mux" "github.com/mattermost/mattermost-server/model" - "github.com/mattermost/mattermost-server/utils" ) func (api *API) InitOAuth() { - l4g.Debug(utils.T("api.oauth.init.debug")) - api.BaseRoutes.OAuth.Handle("/register", api.ApiUserRequired(registerOAuthApp)).Methods("POST") api.BaseRoutes.OAuth.Handle("/list", api.ApiUserRequired(getOAuthApps)).Methods("GET") api.BaseRoutes.OAuth.Handle("/app/{client_id}", api.ApiUserRequired(getOAuthAppInfo)).Methods("GET") -- cgit v1.2.3-1-g7c22