From abb2a664d0292c4a6bf15582d92a1c0f5dc12874 Mon Sep 17 00:00:00 2001 From: Jake Schuurmans Date: Wed, 14 Aug 2024 11:29:40 -0400 Subject: [PATCH] PR Comment fix: Add additional context to config validation error message --- internal/store/fleetdb/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/store/fleetdb/config.go b/internal/store/fleetdb/config.go index 89b87ad..d45e640 100644 --- a/internal/store/fleetdb/config.go +++ b/internal/store/fleetdb/config.go @@ -37,7 +37,7 @@ func (cfg *Config) validate() error { } if cfg.OidcIssuerURL == "" { - return errors.Wrap(ErrFleetDBConfig, "oidc url was empty") + return errors.Wrap(ErrFleetDBConfig, "oidc issuer url was empty") } if cfg.OidcClientSecret == "" {