v2.3.0 - Update packages

This commit is contained in:
Daniel Mason 2024-09-04 18:50:32 +12:00
parent 5ef4a63a6e
commit 2c995bd613
Signed by: idanoo
GPG key ID: 387387CDBC02F132
8 changed files with 170 additions and 114 deletions

View file

@ -62,7 +62,7 @@ class Status
\Resque\Resque::redis()->set(
'job:' . $id . ':status',
json_encode($statusPacket),
['ex' => (86400 * 2)],
['ex' => \Resque\Redis::DEFAULT_REDIS_TTL],
);
}
@ -106,7 +106,7 @@ class Status
\Resque\Resque::redis()->set(
(string)$this,
json_encode($statusPacket),
['ex' => (86400 * 2)],
['ex' => \Resque\Redis::DEFAULT_REDIS_TTL],
);
}