Skip to content
Snippets Groups Projects
Commit d3aed470 authored by Daniel Friesel's avatar Daniel Friesel
Browse files

db-iris: Correctly set cache expiry

parent 65c7386d
No related branches found
No related tags found
No related merge requests found
......@@ -144,14 +144,14 @@ if ($use_cache) {
eval {
use Cache::File;
$schedule_cache = Cache::File->new(
cache_root => $schedule_cache_path,
defaut_expires => '6 hours',
lock_level => Cache::File::LOCK_LOCAL(),
cache_root => $schedule_cache_path,
default_expires => '6 hours',
lock_level => Cache::File::LOCK_LOCAL(),
);
$realtime_cache = Cache::File->new(
cache_root => $realtime_cache_path,
defaut_expires => '180 seconds',
lock_level => Cache::File::LOCK_LOCAL(),
cache_root => $realtime_cache_path,
default_expires => '180 seconds',
lock_level => Cache::File::LOCK_LOCAL(),
);
};
if ($@) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment