diff --git a/src/Fetcher.php b/src/Fetcher.php index b355b27..8a2dde9 100644 --- a/src/Fetcher.php +++ b/src/Fetcher.php @@ -59,7 +59,7 @@ public function __construct(Identifier $identifier) $this->identifier = $identifier; $this->resourcesToFetch = $identifier->getRelatedResources(); $this->output = new Output(); - $this->client = GuzzleFactory::make([], 100); + $this->client = GuzzleFactory::make(['timeout' => 2], 100, null, 0); } /** @@ -71,7 +71,7 @@ public function fetch(): Output { $this->fetchResources(); - //$this->fetchComplementaryResources(); + $this->fetchComplementaryResources(); $this->output->resetLists();