Update tailscale to v1.102.1

This commit is contained in:
世界
2026-08-30 17:41:45 +08:00
parent 9bf39f85f9
commit e797c2d0ba
18 changed files with 282 additions and 210 deletions
+2 -4
View File
@@ -134,9 +134,7 @@ func TestSystemExchangeConcurrent(t *testing.T) {
if i%2 == 1 {
qtype = mDNS.TypeAAAA
}
waitGroup.Add(1)
go func() {
defer waitGroup.Done()
waitGroup.Go(func() {
message := new(mDNS.Msg)
message.SetQuestion("localhost.", qtype)
ctx, cancel := context.WithTimeout(context.Background(), 5*time.Second)
@@ -149,7 +147,7 @@ func TestSystemExchangeConcurrent(t *testing.T) {
if len(response.Answer) == 0 {
errors <- context.DeadlineExceeded
}
}()
})
}
waitGroup.Wait()
close(errors)