fix typo, error message is now two-way greppable

This commit is contained in:
Cassondra Foesch 2021-02-22 10:44:28 +00:00
parent c6f90f0596
commit 1d73fd92d5
1 changed files with 1 additions and 1 deletions

View File

@ -91,7 +91,7 @@ func (c *clientConn) recv() error {
// This is an unexpected occurrence. Send the error
// back to all listeners so that they terminate
// gracefully.
return errors.Errorf("sid: %v not fond", sid)
return errors.Errorf("sid not found: %v", sid)
}
ch <- result{typ: typ, data: data}