Refactor error handler

This commit is contained in:
世界 2022-06-30 21:04:30 +08:00
parent 14c8cee479
commit 574f87527b
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
7 changed files with 13 additions and 13 deletions

View file

@ -122,8 +122,8 @@ func (s *Service) newConnection(ctx context.Context, conn net.Conn, metadata M.M
}, metadata)
}
func (s *Service) HandleError(err error) {
s.handler.HandleError(err)
func (s *Service) NewError(ctx context.Context, err error) {
s.handler.NewError(ctx, err)
}
type serverConn struct {