about summary refs log tree commit diff stats
path: root/internal/importer/package.go
diff options
context:
space:
mode:
authorAlan Pearce2024-05-20 18:13:07 +0200
committerAlan Pearce2024-05-20 18:13:07 +0200
commit0f5508013d776f8806a87957f80e74c7f74c72eb (patch)
tree1d7b9bbe1b296d08d2ca9e740dc546cccaf4e1df /internal/importer/package.go
parentd0c2de9e762fb476b5cb53bb5129bf8af8cb9b45 (diff)
downloadsearchix-0f5508013d776f8806a87957f80e74c7f74c72eb.tar.lz
searchix-0f5508013d776f8806a87957f80e74c7f74c72eb.tar.zst
searchix-0f5508013d776f8806a87957f80e74c7f74c72eb.zip
feat(config): print durations and URLs with human values
Diffstat (limited to 'internal/importer/package.go')
-rw-r--r--internal/importer/package.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/importer/package.go b/internal/importer/package.go
index c10a96d..dbc5854 100644
--- a/internal/importer/package.go
+++ b/internal/importer/package.go
@@ -105,7 +105,7 @@ func convertToLicense(in map[string]any) *nix.License {
 }
 
 func (i *PackageIngester) Process(parent context.Context) (<-chan nix.Importable, <-chan error) {
-	ctx, cancel := context.WithTimeout(parent, i.source.ImportTimeout)
+	ctx, cancel := context.WithTimeout(parent, i.source.ImportTimeout.Duration)
 	results := make(chan nix.Importable)
 	errs := make(chan error)