starpc 0.8.0 → 0.8.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/srpc/client-rpc.go +0 -2
package/package.json
CHANGED
package/srpc/client-rpc.go
CHANGED
|
@@ -4,7 +4,6 @@ import (
|
|
|
4
4
|
"context"
|
|
5
5
|
|
|
6
6
|
"github.com/pkg/errors"
|
|
7
|
-
"github.com/sirupsen/logrus"
|
|
8
7
|
)
|
|
9
8
|
|
|
10
9
|
// ClientRPC represents the client side of an on-going RPC call message stream.
|
|
@@ -141,7 +140,6 @@ func (r *ClientRPC) HandleCallData(pkt *CallData) error {
|
|
|
141
140
|
return ErrCompleted
|
|
142
141
|
}
|
|
143
142
|
|
|
144
|
-
logrus.Infof("DEBUG: handling call data for %s/%s: %s", r.service, r.method, pkt)
|
|
145
143
|
if data := pkt.GetData(); len(data) != 0 || pkt.GetDataIsZero() {
|
|
146
144
|
select {
|
|
147
145
|
case <-r.ctx.Done():
|