Skip to content

Commit

Permalink
PR Comment fix: Add additional context to config validation error mes…
Browse files Browse the repository at this point in the history
…sage
  • Loading branch information
jakeschuurmans committed Aug 14, 2024
1 parent d25b168 commit abb2a66
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/store/fleetdb/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 == "" {
Expand Down

0 comments on commit abb2a66

Please sign in to comment.