Merge pull request #1114 from milosgajdos83/network-backward-compatibility
Fixed bug:m network.proto backwards compatibility unmarshal
This commit is contained in:
commit
f67d87e99d
@ -70,12 +70,22 @@ func newStatus() *status {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func newPeerStatus(peer *pb.Peer) *status {
|
func newPeerStatus(peer *pb.Peer) *status {
|
||||||
return &status{
|
status := &status{
|
||||||
err: &nerr{
|
err: new(nerr),
|
||||||
count: int(peer.Node.Status.Error.Count),
|
|
||||||
msg: errors.New(peer.Node.Status.Error.Msg),
|
|
||||||
},
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// if Node.Status is nil, return empty status
|
||||||
|
if peer.Node.Status == nil {
|
||||||
|
return status
|
||||||
|
}
|
||||||
|
|
||||||
|
// if peer.Node.Status.Error is NOT nil, update status fields
|
||||||
|
if err := peer.Node.Status.GetError(); err != nil {
|
||||||
|
status.err.count = int(peer.Node.Status.Error.Count)
|
||||||
|
status.err.msg = errors.New(peer.Node.Status.Error.Msg)
|
||||||
|
}
|
||||||
|
|
||||||
|
return status
|
||||||
}
|
}
|
||||||
|
|
||||||
func (s *status) Error() Error {
|
func (s *status) Error() Error {
|
||||||
|
Loading…
Reference in New Issue
Block a user