We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents bf24abb + e35387a commit 5c68219Copy full SHA for 5c68219
internal/certificatetransparency/ct-watcher.go
@@ -122,9 +122,14 @@ func (w *Watcher) addNewlyAvailableLogs(logList loglist3.LogList) {
122
for _, operator := range logList.Operators {
123
// Iterate over each log of the operator
124
for _, transparencyLog := range operator.Logs {
125
- // Check if the log is already being watched
126
newURL := normalizeCtlogURL(transparencyLog.URL)
127
+ if transparencyLog.State.LogStatus() == loglist3.RetiredLogStatus {
128
+ log.Printf("Skipping retired CT log: %s\n", newURL)
129
+ continue
130
+ }
131
+
132
+ // Check if the log is already being watched
133
alreadyWatched := false
134
for _, ctWorker := range w.workers {
135
workerURL := normalizeCtlogURL(ctWorker.ctURL)
0 commit comments