mirror of
https://github.com/ipfs/kubo.git
synced 2026-02-24 11:57:44 +08:00
Merge pull request #1133 from ipfs/fix/ipns-startup
Add timeout to ipns resolution at startup
This commit is contained in:
commit
31d64e6b26
@ -159,8 +159,10 @@ func (fs *Filesystem) newKeyRoot(parent context.Context, k ci.PrivKey) (*KeyRoot
|
||||
}
|
||||
}
|
||||
|
||||
mnode, err := fs.dserv.Get(ctx, pointsTo)
|
||||
tctx, _ := context.WithTimeout(parent, time.Second*5)
|
||||
mnode, err := fs.dserv.Get(tctx, pointsTo)
|
||||
if err != nil {
|
||||
log.Errorf("Failed to retreive value '%s' for ipns entry: %s\n", pointsTo, err)
|
||||
return nil, err
|
||||
}
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user