mirror of
https://github.com/mattermost/mattermost.git
synced 2025-02-25 18:55:24 -06:00
Reduce logging data races, fix MySQL test race condition (#7994)
* fix races * revert unintentional change * fix test as intended
This commit is contained in:
@@ -7,12 +7,9 @@ import (
|
||||
l4g "github.com/alecthomas/log4go"
|
||||
|
||||
"github.com/mattermost/mattermost-server/model"
|
||||
"github.com/mattermost/mattermost-server/utils"
|
||||
)
|
||||
|
||||
func (api *API) InitStatus() {
|
||||
l4g.Debug(utils.T("wsapi.status.init.debug"))
|
||||
|
||||
api.Router.Handle("get_statuses", api.ApiWebSocketHandler(api.getStatuses))
|
||||
api.Router.Handle("get_statuses_by_ids", api.ApiWebSocketHandler(api.getStatusesByIds))
|
||||
}
|
||||
|
||||
@@ -4,14 +4,10 @@
|
||||
package wsapi
|
||||
|
||||
import (
|
||||
l4g "github.com/alecthomas/log4go"
|
||||
"github.com/mattermost/mattermost-server/model"
|
||||
"github.com/mattermost/mattermost-server/utils"
|
||||
)
|
||||
|
||||
func (api *API) InitSystem() {
|
||||
l4g.Debug(utils.T("wsapi.system.init.debug"))
|
||||
|
||||
api.Router.Handle("ping", api.ApiWebSocketHandler(ping))
|
||||
}
|
||||
|
||||
|
||||
@@ -4,14 +4,10 @@
|
||||
package wsapi
|
||||
|
||||
import (
|
||||
l4g "github.com/alecthomas/log4go"
|
||||
"github.com/mattermost/mattermost-server/model"
|
||||
"github.com/mattermost/mattermost-server/utils"
|
||||
)
|
||||
|
||||
func (api *API) InitUser() {
|
||||
l4g.Debug(utils.T("wsapi.user.init.debug"))
|
||||
|
||||
api.Router.Handle("user_typing", api.ApiWebSocketHandler(api.userTyping))
|
||||
}
|
||||
|
||||
|
||||
@@ -4,14 +4,10 @@
|
||||
package wsapi
|
||||
|
||||
import (
|
||||
l4g "github.com/alecthomas/log4go"
|
||||
"github.com/mattermost/mattermost-server/model"
|
||||
"github.com/mattermost/mattermost-server/utils"
|
||||
)
|
||||
|
||||
func (api *API) InitWebrtc() {
|
||||
l4g.Debug(utils.T("wsapi.webtrc.init.debug"))
|
||||
|
||||
api.Router.Handle("webrtc", api.ApiWebSocketHandler(api.webrtcMessage))
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user