mirror of
https://github.com/tmrts/go-patterns.git
synced 2024-11-21 12:36:07 +03: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