You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: digicert-certcentral-caplugin/CertCentralCAPlugin.cs
+3-1Lines changed: 3 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -760,7 +760,9 @@ public async Task Synchronize(BlockingCollection<AnyCAPluginCertificate> blockin
760
760
{
761
761
_logger.MethodEntry(LogLevel.Trace);
762
762
763
-
lastSync=lastSync.HasValue?lastSync.Value.AddHours(-7):DateTime.MinValue;// DigiCert issue with treating the timezone as mountain time. -7 to accomodate DST
763
+
// DigiCert issue with treating the timezone as mountain time. -7 hours to accomodate DST
764
+
// If no last sync, use 7 days in the past as the starting point (only relevant for incremental syncs)
0 commit comments