aboutsummaryrefslogtreecommitdiffhomepage
path: root/Digitigrade/JobQueue.php
diff options
context:
space:
mode:
authorwinter2024-12-14 21:24:48 +0000
committerwinter2024-12-14 21:45:59 +0000
commit2f4c1de3509141880df019ef1a6cc65981b3f6ea (patch)
tree0021f3a860d6c80869d4af5d366393f1d0eea288 /Digitigrade/JobQueue.php
parent0c6497ff02b8118bcefee37cc6fe0cbc02df4bb4 (diff)
implement outbound auth? untested
untested because i don't have another instance to test it against ....
Diffstat (limited to 'Digitigrade/JobQueue.php')
-rw-r--r--Digitigrade/JobQueue.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/Digitigrade/JobQueue.php b/Digitigrade/JobQueue.php
index 9f95584..cce6be5 100644
--- a/Digitigrade/JobQueue.php
+++ b/Digitigrade/JobQueue.php
@@ -65,7 +65,7 @@ class JobQueue extends Singleton {
$job->run();
$this->conn->delete($beanJob);
$log->info('Job ' . $beanJob->getId() . ' completed successfully');
- } catch (\Exception $e) {
+ } catch (\Throwable $e) {
if ($job->remainingTries <= 0) {
$this->conn->delete($beanJob);
$log->error(