8000 feat(coderd): add provisioner_daemons to /debug/health endpoint by johnstcn · Pull Request #11393 · coder/coder · GitHub
[go: up one dir, main page]

Skip to content

feat(coderd): add provisioner_daemons to /debug/health endpoint #11393

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 18 commits into from
Jan 8, 2024
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
fix after rebase
  • Loading branch information
johnstcn committed Jan 8, 2024
commit e191f14228c0b1cba020081841ffc8d16ca5fc6f
2 changes: 1 addition & 1 deletion coderd/healthcheck/provisioner_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ func TestProvisionerDaemonReport(t *testing.T) {
{
name: "api version backward compat",
currentVersion: "v2.3.4",
currentAPIVersion: apiversion.New([]int{2, 1}, 0),
currentAPIVersion: apiversion.New(2, 0).WithBackwardCompat(1),
expectedSeverity: health.SeverityOK,
provisionerDaemonsFn: fakeProvisionerDaemonsFn(
fakeProvisionerDaemon(t, "pd-old-api", "v2.3.4", "1.0")),
Expand Down
0