From 7803e1ec7c7b2e465bc28365da7bc1ed5bd9417b Mon Sep 17 00:00:00 2001 From: Josh Creek <8179928+jcreek@users.noreply.github.com> Date: Tue, 1 Sep 2026 09:40:35 +0100 Subject: [PATCH] feat: wire control plane probe recorder --- server/cmd/control-plane/main.go | 1 + 1 file changed, 1 insertion(+) diff --git a/server/cmd/control-plane/main.go b/server/cmd/control-plane/main.go index fcd5f34c..774182d3 100644 --- a/server/cmd/control-plane/main.go +++ b/server/cmd/control-plane/main.go @@ -86,6 +86,7 @@ func newAPIHandler(db *sql.DB, indexes ...api.CandidateIndex) http.Handler { ProposalBackend: api.ProposalProviderFromStore(db), Assignment: api.AssignmentProviderFromStore(db), CandidateIndex: candidateIndex, + ProbeRecorder: store.PostgresQueue{DB: db}, Now: func() time.Time { return time.Now().UTC() }, }).Handler() }