dht: Error while sending a find_node during bootstrap is not fatal

This commit is contained in:
Matt Joiner 2014-11-29 20:31:07 -06:00
parent f93ed52be2
commit 69969d0d73
1 changed files with 2 additions and 1 deletions

View File

@ -862,7 +862,8 @@ func (s *Server) bootstrap() (err error) {
var t *transaction
t, err = s.findNode(node.addr, s.id)
if err != nil {
return
log.Printf("error sending find_node: %s", err)
continue
}
outstanding.Add(1)
go func() {