From 5bb28c23a9ed7c6deb2faefb4ae39501bfbb77f2 Mon Sep 17 00:00:00 2001 From: Sven van Ginkel Date: Sun, 4 Jan 2026 15:31:00 +0100 Subject: [PATCH 1/2] Fix: Increase timeout for Apprise notifications (#2628) Co-authored-by: Alex Justesen --- app/Notifications/AppriseChannel.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Notifications/AppriseChannel.php b/app/Notifications/AppriseChannel.php index 0e9ed1087..c6fe6a1c3 100644 --- a/app/Notifications/AppriseChannel.php +++ b/app/Notifications/AppriseChannel.php @@ -33,7 +33,7 @@ public function send(object $notifiable, Notification $notification): void } try { - $request = Http::timeout(5) + $request = Http::timeout(30) ->withHeaders([ 'Content-Type' => 'application/json', ]); From 82fdd6fa79cfb773050b17470b0bc586d03de307 Mon Sep 17 00:00:00 2001 From: Sven van Ginkel Date: Sun, 4 Jan 2026 15:32:11 +0100 Subject: [PATCH 2/2] Chore: clean up ping logs (#2629) Co-authored-by: Alex Justesen --- app/Actions/PingHostname.php | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/app/Actions/PingHostname.php b/app/Actions/PingHostname.php index 5bbf15ddf..04884fe31 100644 --- a/app/Actions/PingHostname.php +++ b/app/Actions/PingHostname.php @@ -23,9 +23,12 @@ public function handle(?string $hostname = null, int $count = 1): PingResult count: $count, ))->run(); - Log::info('Pinged hostname', [ + $data = $ping->toArray(); + unset($data['raw_output'], $data['lines']); + + Log::debug('Pinged hostname', [ 'host' => $hostname, - 'data' => $ping->toArray(), + 'data' => $data, ]); return $ping;