We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 3f81e47 + 46a7394 commit cf9279cCopy full SHA for cf9279c
client/watch.go
@@ -77,8 +77,9 @@ func (c *Channel) Watch(h AdjudicatorEventHandler) error {
77
go h.HandleAdjudicatorEvent(e)
78
}
79
80
- log.Debugf("Subscription closed: %v", sub.Err())
81
- return errors.WithMessage(sub.Err(), "subscription closed")
+ err = sub.Err()
+ log.Debugf("Subscription closed: %v", err)
82
+ return errors.WithMessage(err, "subscription closed")
83
84
85
// Register registers the channel on the adjudicator.
0 commit comments