8000 fix: use backend for `/healthz` page by coadler · Pull Request #4938 · coder/coder · GitHub
[go: up one dir, main page]

Skip to content

fix: use backend for /healthz page #4938

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 5 commits into from
Nov 7, 2022
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
Next Next commit
fixup! add test
  • Loading branch information
coadler committed Nov 7, 2022
commit baa8ceb8ce63c77e21d177b0df6bb9d406ee07c6
2 changes: 1 addition & 1 deletion coderd/coderd_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ func TestHealthz(t *testing.T) {
t.Parallel()
client := coderdtest.New(t, nil)

res, err := client.Request(context.Background(), "GET", "/healthz", nil)
res, err := client.Request(context.Background(), http.MethodGet, "/healthz", nil)
require.NoError(t, err)
defer res.Body.Close()

Expand Down
0