Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit cf2cf0d

Browse files
committed
fix: log correct error variable in createTailnet
After noticing #17265, I asked Claude Code if it could find similar bugs. It identified this one, which appears to be a valid bug.
1 parent f475555 commit cf2cf0d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

agent/agent.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1408,7 +1408,7 @@ func (a *agent) createTailnet(
14081408
if rPTYServeErr != nil &&
14091409
a.gracefulCtx.Err() == nil &&
14101410
!strings.Contains(rPTYServeErr.Error(), "use of closed network connection") {
1411-
a.logger.Error(ctx, "error serving reconnecting PTY", slog.Error(err))
1411+
a.logger.Error(ctx, "error serving reconnecting PTY", slog.Error(rPTYServeErr))
14121412
}
14131413
}); err != nil {
14141414
return nil, err

0 commit comments

Comments
 (0)