Skip to content

Commit

Permalink
Reduce cache lifetime from 5 hours to 5 minutes
Browse files Browse the repository at this point in the history
Bug: T213126
  • Loading branch information
samwilson committed Sep 17, 2021
1 parent 86f8b7e commit 86d3ac7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Service/FileCache.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@
class FileCache
{
/**
* 5 hours
* 5 minutes
*/
private const CACHE_DURATION = 5 * 60 * 60;
private const CACHE_DURATION = 5 * 60;

/** @var Retriever */
private $retriever;
Expand Down

0 comments on commit 86d3ac7

Please sign in to comment.