Thanks to visit codestin.com Credit goes to github.com
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 494ef42 commit eb934e9Copy full SHA for eb934e9
src/Symfony/Component/Lock/Store/PostgreSqlStore.php
@@ -87,6 +87,7 @@ public function save(Key $key)
87
88
// Check if lock is acquired
89
if (true === (\is_object($result) ? $result->fetchOne() : $stmt->fetchColumn())) {
90
+ $key->markUnserializable();
91
// release sharedLock in case of promotion
92
$this->unlockShared($key);
93
@@ -109,6 +110,7 @@ public function saveRead(Key $key)
109
110
111
112
113
114
// release lock in case of demotion
115
$this->unlock($key);
116
0 commit comments