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
+4 -8
View File
@@ -1178,9 +1178,7 @@ func (c *CommandClient) StartTailscaleSSHSession(opts *TailscaleSSHOptions, hand
closeDone: make(chan struct{}),
}
session.wg.Add(1)
go func() {
defer session.wg.Done()
session.wg.Go(func() {
for {
select {
case <-streamCtx.Done():
@@ -1208,11 +1206,9 @@ func (c *CommandClient) StartTailscaleSSHSession(opts *TailscaleSSHOptions, hand
}
}
}
}()
})
session.wg.Add(1)
go func() {
defer session.wg.Done()
session.wg.Go(func() {
for {
msg, recvErr := stream.Recv()
if recvErr == io.EOF {
@@ -1239,7 +1235,7 @@ func (c *CommandClient) StartTailscaleSSHSession(opts *TailscaleSSHOptions, hand
handler.OnError(payload.Error.Message)
}
}
}()
})
standalone := c.standalone
go func() {