1
0
Fork 0

Does not generate ACME certificate if domain is checked by dynamic certificate

This commit is contained in:
SALLEYRON Julien 2018-04-27 10:36:04 +02:00 committed by Traefiker Bot
parent 3b3ca89483
commit a1bbaec71f
4 changed files with 9 additions and 7 deletions

View file

@ -55,7 +55,7 @@ type Provider struct {
client *acme.Client
certsChan chan *Certificate
configurationChan chan<- types.ConfigMessage
certificateStore traefiktls.CertificateStore
certificateStore *traefiktls.CertificateStore
clientMutex sync.Mutex
configFromListenerChan chan types.Configuration
pool *safe.Pool
@ -185,7 +185,7 @@ func (p *Provider) watchNewDomains() {
}
// SetCertificateStore allow to initialize certificate store
func (p *Provider) SetCertificateStore(certificateStore traefiktls.CertificateStore) {
func (p *Provider) SetCertificateStore(certificateStore *traefiktls.CertificateStore) {
p.certificateStore = certificateStore
}