feat(config): print durations and URLs with human values
1 file changed, 1 insertion(+), 1 deletion(-)
changed files
M internal/importer/options.go → internal/importer/options.go
@@ -88,7 +88,7 @@ return &i, nil } func (i *OptionIngester) 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)