Skip to content

feat: improve coder connect tunnel handling on reconnect #17598

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Prev Previous commit
compile error mishap
  • Loading branch information
ibetitsmike committed May 5, 2025
commit 0d2ecb29170dfd4519534761304a9aadc66521a8
2 changes: 1 addition & 1 deletion tailnet/controllers.go
Original file line number Diff line number Diff line change
Expand Up @@ -898,7 +898,7 @@ type Workspace struct {
}

func (w *Workspace) Clone() Workspace {
agents := make(map[uuid.UUID]*Agent, len(a.agents))
agents := make(map[uuid.UUID]*Agent, len(w.agents))
for k, v := range w.agents {
clone := v.Clone()
agents[k] = &clone
Expand Down
Loading