Skip to content

Commit

Permalink
Merge pull request #92 from moufmouf/fix_conflicting_cache_key
Browse files Browse the repository at this point in the history
Fixing colliding cache key for the schema
  • Loading branch information
moufmouf committed Jun 13, 2018
2 parents 1064834 + 37a3f91 commit 6fae482
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/TDBMSchemaAnalyzer.php
Expand Up @@ -75,7 +75,7 @@ public function getCachePrefix(): string
public function getSchema(): Schema
{
if ($this->schema === null) {
$cacheKey = $this->getCachePrefix().'_schema';
$cacheKey = $this->getCachePrefix().'_immutable_schema';
if ($this->cache->contains($cacheKey)) {
$this->schema = $this->cache->fetch($cacheKey);
} else {
Expand Down

0 comments on commit 6fae482

Please sign in to comment.