mirror of
https://github.com/ipfs/kubo.git
synced 2025-06-28 00:39:31 +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 {
|
||||
// Not found or other network issue. Can't really do
|
||||
// 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
|
||||
}
|
||||
default:
|
||||
|
Reference in New Issue
Block a user