Skip to content

Commit

Permalink
Add NXOS support
Browse files Browse the repository at this point in the history
  • Loading branch information
sbyx committed Nov 5, 2018
1 parent 8d1bf25 commit 2183e7c
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions xport_grpc.go
Original file line number Diff line number Diff line change
Expand Up @@ -464,13 +464,14 @@ func (s *grpcLocalServer) MdtDialout(
reply, err := stream.Recv()
if err != nil {
if err == io.EOF {
logctx.WithError(err).Error(GRPCLOGPRE +
"session closed")
//logctx.WithError(err).Error(GRPCLOGPRE +
// "session closed")
return nil
} else {
logctx.WithError(err).Error(GRPCLOGPRE +
"session error")
return err
}
return err
}

if len(reply.Data) == 0 {
Expand Down

0 comments on commit 2183e7c

Please sign in to comment.