Skip to content

Commit

Permalink
Fixes TTL cache key name (#4228)
Browse files Browse the repository at this point in the history
  • Loading branch information
ngiraud authored Oct 25, 2024
1 parent c407d2e commit 9160897
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Cache/CacheManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -60,14 +60,14 @@ public function createBatchDriver(): CacheInterface
return new BatchCacheDeprecated(
$this->createIlluminateDriver(),
$this->createMemoryDriver(),
config('excel.cache.ttl')
config('excel.cache.default_ttl')
);
}

return new BatchCache(
$this->createIlluminateDriver(),
$this->createMemoryDriver(),
config('excel.cache.ttl')
config('excel.cache.default_ttl')
);
}

Expand Down

0 comments on commit 9160897

Please sign in to comment.