From 0f5508013d776f8806a87957f80e74c7f74c72eb Mon Sep 17 00:00:00 2001 From: Alan Pearce Date: Mon, 20 May 2024 18:13:07 +0200 Subject: feat(config): print durations and URLs with human values --- internal/fetcher/download.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'internal/fetcher/download.go') diff --git a/internal/fetcher/download.go b/internal/fetcher/download.go index 7657825..4165886 100644 --- a/internal/fetcher/download.go +++ b/internal/fetcher/download.go @@ -26,7 +26,7 @@ var files = map[string]string{ func (i *DownloadFetcher) FetchIfNeeded( parent context.Context, ) (f FetchedFiles, updated bool, err error) { - ctx, cancel := context.WithTimeout(parent, i.Source.FetchTimeout) + ctx, cancel := context.WithTimeout(parent, i.Source.FetchTimeout.Duration) defer cancel() root := i.DataPath -- cgit 1.4.1