mirror of
https://github.com/tmrts/go-patterns.git
synced 2025-12-17 15:27:55 +00:00
messaging/publish-subscribe: fix channel read
This commit is contained in:
parent
d717978979
commit
82fc76d6ab
@ -27,7 +27,7 @@ type Subscription struct {
|
||||
}
|
||||
|
||||
func (s *Subscription) Publish(msg Message) error {
|
||||
if _, ok := s.ch; !ok {
|
||||
if _, ok := <-s.ch; !ok {
|
||||
return errors.New("Topic has been closed")
|
||||
}
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user