We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 915bdbb commit 90ca5c9Copy full SHA for 90ca5c9
1 file changed
internal/certificatetransparency/ct-watcher.go
@@ -172,6 +172,15 @@ func (w *Watcher) dropRemovedLogs(logList loglist3.LogList) {
172
}
173
174
175
+ // Make sure to not drop logs that are defined locally in the additional logs list
176
+ for _, additionalLogConfig := range config.AppConfig.General.AdditionalLogs {
177
+ additionalLogListURL := normalizeCtlogURL(additionalLogConfig.URL)
178
+ if workerURL == additionalLogListURL {
179
+ onLogList = true
180
+ break
181
+ }
182
183
+
184
// If the log is not in the loglist, stop the worker
185
if !onLogList {
186
log.Printf("Stopping worker. CT URL not found in LogList: '%s'\n", ctWorker.ctURL)
0 commit comments