1
0
Fork 0
mirror of https://github.com/gocsaf/csaf.git synced 2025-12-22 11:55:40 +01:00

Do not export function in config.

This commit is contained in:
Sascha L. Teichmann 2022-08-03 15:32:05 +02:00
parent fd0ae57443
commit 696fb74b36
2 changed files with 3 additions and 3 deletions

View file

@ -173,7 +173,7 @@ func (w *worker) interimWork(wg *sync.WaitGroup, jobs <-chan *interimJob) {
defer wg.Done()
path := filepath.Join(w.processor.cfg.Web, ".well-known", "csaf-aggregator")
tooOld := w.processor.cfg.TooOldForInterims()
tooOld := w.processor.cfg.tooOldForInterims()
for j := range jobs {
w.setupProviderInterim(j.provider)