We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents a56dba2 + 8cddf1f commit 42023a9Copy full SHA for 42023a9
CHANGELOG.md
@@ -1,6 +1,11 @@
1
Changelog
2
=========
3
4
+2.0.2
5
+-----
6
+
7
+* Fixed cache key sanitize for UUID map of referenceable nodes.
8
9
2.0.1
10
-----
11
src/Jackalope/Transport/DoctrineDBAL/CachedClient.php
@@ -103,6 +103,7 @@ private function clearNodeCache(Node $node): void
103
if ($node->isNodeType('mix:referenceable')) {
104
$uuid = $node->getIdentifier();
105
$cacheKey = "nodes by uuid: $uuid, ".$this->workspaceName;
106
+ $cacheKey = $this->sanitizeKey($cacheKey);
107
$this->caches['nodes']->delete($cacheKey);
108
}
109
0 commit comments