Replies: 3 comments
-
Beta Was this translation helpful? Give feedback.
0 replies
-
测试结果: a783cd5 bad 50bcb68 版本的profile结果 发现出现CPU被全部占用的时候,可能是遇到了不存在AAAA记录的域名,反复执行以下代码 v2ray-core/app/dns/nameserver_doh.go Lines 373 to 384 in 50bcb68 记录日志跟踪了一下: i := 0
for {
i++
ips, err := s.findIPsForDomain(fqdn, option)
log.Printf("RESOLVE: %s %d", fqdn, i)
if err != errRecordNotFound {
return ips, err
}
select {
case <-ctx.Done():
return nil, ctx.Err()
case <-done:
}
} 记录到以下日志:
解析 alive.github.com 在一秒内这段代码被执行了 2,026,539次 |
Beta Was this translation helpful? Give feedback.
0 replies
-
I think 46fa8f7 has fixed the problem. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
版本: 639148d
Beta Was this translation helpful? Give feedback.
All reactions