Skip to content

Commit

Permalink
Merge pull request #995 from lrweck/patch-1
Browse files Browse the repository at this point in the history
Update gossip_actor.go
  • Loading branch information
rogeralsing authored Dec 19, 2023
2 parents a46b643 + 0c239cd commit 1d6f42e
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 1d6f42e

Please sign in to comment.