Skip to content

Commit e7394c1

Browse files
committed
Undo change to cache expiration
1 parent 7be9661 commit e7394c1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Services/InfoProviderSystem/PartInfoRetriever.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@
3333
final class PartInfoRetriever
3434
{
3535

36-
private const CACHE_DETAIL_EXPIRATION = 5; // 4 days
37-
private const CACHE_RESULT_EXPIRATION = 5; // 7 days
36+
private const CACHE_DETAIL_EXPIRATION = 60 * 60 * 24 * 4; // 4 days
37+
private const CACHE_RESULT_EXPIRATION = 60 * 60 * 24 * 4; // 7 days
3838

3939
public function __construct(private readonly ProviderRegistry $provider_registry,
4040
private readonly DTOtoEntityConverter $dto_to_entity_converter, private readonly CacheInterface $partInfoCache)

0 commit comments

Comments
 (0)