We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 735f6e6 commit 95da843Copy full SHA for 95da843
1 file changed
internal/certificatetransparency/ct-watcher.go
@@ -183,8 +183,13 @@ func (w *Watcher) dropRemovedLogs(logList loglist3.LogList) {
183
for _, operator := range logList.Operators {
184
// Iterate over each log of the operator
185
for _, transparencyLog := range operator.Logs {
186
- // Check if the log is already being watched
+ // Remove retired logs from the list
187
+ if transparencyLog.State.LogStatus() == loglist3.RetiredLogStatus {
188
+ // Skip retired logs
189
+ continue
190
+ }
191
192
+ // Check if the log is already being watched
193
logListURL := normalizeCtlogURL(transparencyLog.URL)
194
if workerURL == logListURL {
195
onLogList = true
0 commit comments