Skip to content

Commit ed28ee0

Browse files
authored
Merge branch 'release-2.0' into 2.0
2 parents 3362b99 + eff9de9 commit ed28ee0

2 files changed

Lines changed: 5 additions & 0 deletions

File tree

digicert-certcentral-caplugin/CertCentralCAPlugin.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -356,6 +356,7 @@ public Dictionary<string, PropertyConfigInfo> GetCAConnectorAnnotations()
356356
DefaultValue = false,
357357
Type = "Boolean"
358358
},
359+
359360
[CertCentralConstants.Config.SYNC_CA_FILTER] = new PropertyConfigInfo()
360361
{
361362
Comments = "If you list one or more CA IDs here (comma-separated), the sync process will only sync records from those CAs. If you want to sync all CA IDs, leave this field empty.",
@@ -642,6 +643,7 @@ public async Task Synchronize(BlockingCollection<AnyCAPluginCertificate> blockin
642643
string syncCAstring = _config.SyncCAFilter ?? string.Empty;
643644
_logger.LogTrace($"Sync CAs: {syncCAstring}");
644645
List<string> caList = _config.SyncCAs;
646+
645647
caList.ForEach(c => c.ToUpper());
646648

647649

digicert-certcentral-caplugin/CertCentralConfig.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,14 @@ public class CertCentralConfig
1111

1212
public CertCentralConfig()
1313
{
14+
1415
}
1516
public string APIKey { get; set; }
1617
public string Region { get; set; } = "US";
1718
public int? DivisionId { get; set; }
1819
public bool? RevokeCertificateOnly { get; set; }
1920
public bool Enabled { get; set; } = true;
21+
2022
public string SyncCAFilter { get; set; }
2123
public List<string> SyncCAs
2224
{
@@ -32,6 +34,7 @@ public List<string> SyncCAs
3234
}
3335
}
3436
}
37+
3538
public bool? FilterExpiredOrders { get; set; }
3639
public int? SyncExpirationDays { get; set; }
3740
}

0 commit comments

Comments
 (0)