Browse Source
pubsub: check for termination in UnsubscribeAll (#7820)
This check was correctly handled in Unsubscribe, but not UnsubscribeAll.
pull/7823/head
M. J. Fromberger
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
3 additions and
0 deletions
-
internal/pubsub/pubsub.go
|
|
@ -281,6 +281,9 @@ func (s *Server) UnsubscribeAll(ctx context.Context, clientID string) error { |
|
|
|
s.subs.Lock() |
|
|
|
defer s.subs.Unlock() |
|
|
|
|
|
|
|
if s.subs.index == nil { |
|
|
|
return ErrServerStopped |
|
|
|
} |
|
|
|
evict := s.subs.index.findClientID(clientID) |
|
|
|
if len(evict) == 0 { |
|
|
|
return ErrSubscriptionNotFound |
|
|
|