10000 feat: add dynamic parameters websocket endpoint by aslilac · Pull Request #17165 · coder/coder · GitHub
[go: up one dir, main page]

Skip to content

feat: add dynamic parameters websocket endpoint #17165

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
merged 10 commits into from
Apr 10, 2025
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
try normal Close instead
  • Loading branch information
aslilac committed Apr 10, 2025
commit 2ae21d5b121ba8740c169323448feb0221976fd0
2 changes: 1 addition & 1 deletion codersdk/wsjson/stream.go
Original file line number Diff line number Diff line change
Expand Up @@ -40,5 +40,5 @@ func (s *Stream[R, W]) Close(c websocket.StatusCode) error {
}

func (s *Stream[R, W]) Drop() {
_ = s.conn.CloseNow()
_ = s.conn.Close(websocket.StatusInternalError, "dropping connection")
}
Loading
0