mirror of
https://github.com/fosrl/pangolin.git
synced 2026-04-28 03:39:42 +00:00
Fix cert vars issue in stub
This commit is contained in:
parent
0b18194397
commit
7ecfc9cbd3
2 changed files with 3 additions and 2 deletions
|
|
@ -1,6 +1,6 @@
|
|||
export async function getValidCertificatesForDomains(
|
||||
domains: Set<string>,
|
||||
useCache: boolean
|
||||
useCache: boolean = true
|
||||
): Promise<
|
||||
Array<{
|
||||
id: number;
|
||||
|
|
|
|||
|
|
@ -416,7 +416,8 @@ export class TraefikConfigManager {
|
|||
// Get valid certificates for domains not covered by wildcards
|
||||
validCertificates =
|
||||
await getValidCertificatesForDomains(
|
||||
domainsToFetch
|
||||
domainsToFetch,
|
||||
true
|
||||
);
|
||||
this.lastCertificateFetch = new Date();
|
||||
this.lastKnownDomains = new Set(domains);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue