Commit d032e978 authored by Ralph Pichler's avatar Ralph Pichler Committed by GitHub

log pss error instead of stream reset (#693)

parent 25d9b009
......@@ -320,5 +320,9 @@ func (ps *PushSync) handleDeliveryResponse(ctx context.Context, w protobuf.Write
}
// since all PSS messages comes through push sync, deliver them here if this node is the destination
return ps.deliverToPSS(ctx, chunk)
err = ps.deliverToPSS(ctx, chunk)
if err != nil {
ps.logger.Debugf("error pss delivery for chunk %v: %v", chunk.Address(), err)
}
return nil
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment