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
make fmt
  • Loading branch information
johnstcn committed Jan 8, 2024
commit a002fc1cb8c9656f74f79b8c250bc869521df051
10 changes: 4 additions & 6 deletions provisionersdk/serve.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,10 @@ const (
CurrentMinor = 0
)

var (
// VersionCurrent is the current provisionerd API version.
// Breaking changes to the provisionerd API **MUST** increment
// CurrentMajor above.
VersionCurrent = apiversion.New(CurrentMajor, CurrentMinor)
)
// VersionCurrent is the current provisionerd API version.
// Breaking changes to the provisionerd API **MUST** increment
// CurrentMajor above.
var VersionCurrent = apiversion.New(CurrentMajor, CurrentMinor)

// ServeOptions are configurations to serve a provisioner.
type ServeOptions struct {
Expand Down
0