Skip to content

Commit efacf15

Browse files
committed
[Lock] Fix missing argument in PostgreSqlStore::putOffExpiration with DBAL connection
1 parent 380c2fa commit efacf15

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Store/PostgreSqlStore.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ public function saveRead(Key $key)
143143
public function putOffExpiration(Key $key, float $ttl)
144144
{
145145
if (isset($this->dbalStore)) {
146-
$this->dbalStore->putOffExpiration($key);
146+
$this->dbalStore->putOffExpiration($key, $ttl);
147147

148148
return;
149149
}

0 commit comments

Comments
 (0)