Skip to content

Commit

Permalink
Undo change to cache expiration
Browse files Browse the repository at this point in the history
  • Loading branch information
jbtronics committed Feb 20, 2025
1 parent 7be9661 commit e7394c1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Services/InfoProviderSystem/PartInfoRetriever.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@
final class PartInfoRetriever
{

private const CACHE_DETAIL_EXPIRATION = 5; // 4 days
private const CACHE_RESULT_EXPIRATION = 5; // 7 days
private const CACHE_DETAIL_EXPIRATION = 60 * 60 * 24 * 4; // 4 days
private const CACHE_RESULT_EXPIRATION = 60 * 60 * 24 * 4; // 7 days

public function __construct(private readonly ProviderRegistry $provider_registry,
private readonly DTOtoEntityConverter $dto_to_entity_converter, private readonly CacheInterface $partInfoCache)
Expand Down

0 comments on commit e7394c1

Please sign in to comment.