mirror of
https://github.com/coder/coder.git
synced 2025-07-13 21:36:50 +00:00
fix: correct minor formatting issues in CLI (#6813)
* fix: remove excess newlines from server startup * Don't log benign closed pipe errors
This commit is contained in:
@ -774,7 +774,11 @@ func (api *API) dialWorkspaceAgentTailnet(agentID uuid.UUID) (*codersdk.Workspac
|
||||
go func() {
|
||||
err := (*api.TailnetCoordinator.Load()).ServeClient(serverConn, uuid.New(), agentID)
|
||||
if err != nil {
|
||||
api.Logger.Warn(ctx, "tailnet coordinator client error", slog.Error(err))
|
||||
// Sometimes, we get benign closed pipe errors when the server is
|
||||
// shutting down.
|
||||
if api.ctx.Err() == nil {
|
||||
api.Logger.Warn(ctx, "tailnet coordinator client error", slog.Error(err))
|
||||
}
|
||||
_ = agentConn.Close()
|
||||
}
|
||||
}()
|
||||
|
Reference in New Issue
Block a user