Skip to content

Commit 95c1071

Browse files
authored
add prefix (#5)
The new library stores the key values differently so this prevent issues when using the same key in both libraries
1 parent 02212b6 commit 95c1071

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/CacheWithResilience.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ public function __construct(
3939
$this->logger = $logger;
4040
$this->resilienceTtl = $resilienceTtl;
4141
$this->whitelistedExceptions = $whitelistedExceptions;
42-
parent::__construct($cachePool, $prefix, $cacheTimes);
42+
parent::__construct($cachePool, $prefix . '.resilient', $cacheTimes);
4343
}
4444

4545
/**

0 commit comments

Comments
 (0)