Merge pull request #1294 from smallstep/fix-1292

Disable database if WithNoDB() option is passed
This commit is contained in:
Mariano Cano 2023-02-24 15:48:05 -08:00 committed by GitHub
commit 060a2f186c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -812,6 +812,11 @@ func (p *PKI) GenerateConfig(opt ...ConfigOption) (*authconfig.Config, error) {
Templates: p.getTemplates(),
}
// Disable the database when WithNoDB() option is passed.
if p.options.noDB {
cfg.DB = nil
}
// Add linked as a deployment type to detect it on start and provide a
// message if the token is not given.
if p.options.deploymentType == LinkedDeployment {