Skip to content

Commit

Permalink
Update gossip_actor.go
Browse files Browse the repository at this point in the history
We currently log *actor.Stopping and *actor.Stopped as "Gossip received unknown message request"
  • Loading branch information
lrweck authored Dec 19, 2023
1 parent a46b643 commit 0c239cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cluster/gossip_actor.go
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ func NewGossipActor(requestTimeout time.Duration, myID string, getBlockedMembers
// Receive method.
func (ga *GossipActor) Receive(ctx actor.Context) {
switch r := ctx.Message().(type) {
case *actor.Started:
case *actor.Started, *actor.Stopping, *actor.Stopped:
// pass
case *SetGossipStateKey:
ga.onSetGossipStateKey(r, ctx)
Expand Down

0 comments on commit 0c239cd

Please sign in to comment.