mirror of
https://github.com/mattermost/mattermost.git
synced 2026-03-02 13:20:47 -05:00
We were setting the user status to offline without checking for connections on other nodes in a cluster. Now we implement a request-response mechanism for the whole cluster and we check that before setting a user to offline. https://mattermost.atlassian.net/browse/MM-57153 ```release-note Fix a bug where the user status would incorrectly be set to offline without checking for connections in other nodes in an HA cluster. ``` Co-authored-by: Ibrahim Serdar Acikgoz <serdaracikgoz86@gmail.com> Co-authored-by: Mattermost Build <build@mattermost.com> Co-authored-by: Ben Schumacher <ben.schumacher@mattermost.com>
35 lines
1.4 KiB
Go
35 lines
1.4 KiB
Go
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
package einterfaces
|
|
|
|
import (
|
|
"github.com/mattermost/mattermost/server/public/model"
|
|
)
|
|
|
|
type ClusterMessageHandler func(msg *model.ClusterMessage)
|
|
|
|
type ClusterInterface interface {
|
|
StartInterNodeCommunication()
|
|
StopInterNodeCommunication()
|
|
RegisterClusterMessageHandler(event model.ClusterEvent, crm ClusterMessageHandler)
|
|
GetClusterId() string
|
|
IsLeader() bool
|
|
// HealthScore returns a number which is indicative of how well an instance is meeting
|
|
// the soft real-time requirements of the protocol. Lower numbers are better,
|
|
// and zero means "totally healthy".
|
|
HealthScore() int
|
|
GetMyClusterInfo() *model.ClusterInfo
|
|
GetClusterInfos() []*model.ClusterInfo
|
|
SendClusterMessage(msg *model.ClusterMessage)
|
|
SendClusterMessageToNode(nodeID string, msg *model.ClusterMessage) error
|
|
NotifyMsg(buf []byte)
|
|
GetClusterStats() ([]*model.ClusterStats, *model.AppError)
|
|
GetLogs(page, perPage int) ([]string, *model.AppError)
|
|
QueryLogs(page, perPage int) (map[string][]string, *model.AppError)
|
|
GetPluginStatuses() (model.PluginStatuses, *model.AppError)
|
|
ConfigChanged(previousConfig *model.Config, newConfig *model.Config, sendToOtherServer bool) *model.AppError
|
|
// WebConnCountForUser returns the number of active webconn connections
|
|
// for a given userID.
|
|
WebConnCountForUser(userID string) (int, *model.AppError)
|
|
}
|