3
0
mirror of https://github.com/snipe/snipe-it.git synced 2026-02-04 19:15:38 +00:00

Try to better handle slack “too many requests” issue

This commit is contained in:
snipe
2020-08-14 16:10:22 -07:00
parent b5acca89d7
commit bcad49ce79

View File

@ -165,14 +165,24 @@ trait Loggable
$checkinClass = null;
if (method_exists($target, 'notify')) {
$target->notify(new static::$checkinClass($params));
try {
$target->notify(new static::$checkinClass($params));
} catch (\Exception $e) {
\Log::debug($e);
}
}
// Send to the admin, if settings dictate
$recipient = new \App\Models\Recipients\AdminRecipient();
if (($settings->admin_cc_email!='') && (static::$checkinClass!='')) {
$recipient->notify(new static::$checkinClass($params));
try {
$recipient->notify(new static::$checkinClass($params));
} catch (\Exception $e) {
\Log::debug($e);
}
}
return $log;