We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 892d3db commit 0d581d0Copy full SHA for 0d581d0
app/Jobs/WebsitePing.php
@@ -4,7 +4,7 @@
4
5
use App\ScannerClient;
6
use App\Website;
7
-use GuzzleHttp\Exception\RequestException;
+use GuzzleHttp\Exception\TransferException;
8
use Illuminate\Bus\Queueable;
9
use Illuminate\Queue\SerializesModels;
10
use Illuminate\Queue\InteractsWithQueue;
@@ -58,7 +58,7 @@ public function handle()
58
}
59
});
60
61
- } catch (RequestException $exception) {
+ } catch (TransferException $exception) {
62
// Ignore connect exceptions, they will be considered as non-flarum
63
// We also need to catch RequestException for certificate issues and such
64
0 commit comments