mirror of
https://github.com/ipfs/kubo.git
synced 2025-06-29 01:12:24 +08:00
log on network error when resolving the last published IPNS record
License: MIT Signed-off-by: Steven Allen <steven@stebalien.com>
This commit is contained in:
@ -136,6 +136,10 @@ func (p *IpnsPublisher) GetPublished(ctx context.Context, id peer.ID, checkRouti
|
|||||||
if err != nil {
|
if err != nil {
|
||||||
// Not found or other network issue. Can't really do
|
// Not found or other network issue. Can't really do
|
||||||
// anything about this case.
|
// anything about this case.
|
||||||
|
if err != routing.ErrNotFound {
|
||||||
|
log.Debugf("error when determining the last published IPNS record for %s: %s", id, err)
|
||||||
|
}
|
||||||
|
|
||||||
return nil, nil
|
return nil, nil
|
||||||
}
|
}
|
||||||
default:
|
default:
|
||||||
|
Reference in New Issue
Block a user