throw errors in jobs

This commit is contained in:
Andras Bacsai
2023-08-24 21:09:58 +02:00
parent 90dba34ecc
commit b674a0ed88
14 changed files with 19 additions and 5 deletions

View File

@@ -34,7 +34,7 @@ class ProxyCheckJob implements ShouldQueue
} catch (\Throwable $th) {
ray($th->getMessage());
send_internal_notification('ProxyCheckJob failed with: ' . $th->getMessage());
//throw $th;
throw $th;
}
}
}