diff --git a/go/cmd/compass-server/main.go b/go/cmd/compass-server/main.go index 049d3078d..086a7ac31 100644 --- a/go/cmd/compass-server/main.go +++ b/go/cmd/compass-server/main.go @@ -32,12 +32,6 @@ var version = "0.1.0" // RPC). const apiVersion = "compass.v1" -// (no default public URL: the managed-service host is a deployment concern that -// never lives in this repo. --public-url / $COMPASS_PUBLIC_URL supplies it; -// unset means empty, which the responder-assembly boot guard rejects for a -// deployment that consumes Linear webhooks, and which yields relative deep-link -// fragments for a socket-only local deploy.) - // errUsage marks a CLI usage error (a bad flag) that buildServeConfig's FlagSet // has ALREADY reported to stderr (usage + the parse error). run() returns it so // main() can exit non-zero without re-logging it through slog — a typo'd flag is diff --git a/go/server/forge_notify_matrix_test.go b/go/server/forge_notify_matrix_test.go index b4e9199aa..014e61a2f 100644 --- a/go/server/forge_notify_matrix_test.go +++ b/go/server/forge_notify_matrix_test.go @@ -336,10 +336,10 @@ func (d *matrixDispatcher) Notify(_ context.Context, _ string, n *compassv1inter // matrixChecksRoller scripts the combined roll-up for a CHECKS event. type matrixChecksRoller struct { - res ingest.ChecksResult + res forge.ConditionalResult[forge.Checks] } -func (c *matrixChecksRoller) RollUp(context.Context, string, uint64, string, string) (ingest.ChecksResult, error) { +func (c *matrixChecksRoller) RollUp(context.Context, string, uint64, string, string) (forge.ConditionalResult[forge.Checks], error) { return c.res, nil }