We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5ccc91d commit 0e2a928Copy full SHA for 0e2a928
lib/internal/Magento/Framework/Lock/Backend/Cache.php
@@ -57,11 +57,13 @@ public function isLocked(string $name): bool
57
}
58
59
/**
60
- * @param string $name
+ * Get cache locked identifier based on cache identifier.
61
+ *
62
+ * @param string $cacheIdentifier
63
* @return string
64
*/
- private function getIdentifier(string $name): string
65
+ private function getIdentifier(string $cacheIdentifier): string
66
{
- return self::LOCK_PREFIX . $name;
67
+ return self::LOCK_PREFIX . $cacheIdentifier;
68
69
0 commit comments