From da7be61698c7c9f82e06a86c816f84b3c4668293 Mon Sep 17 00:00:00 2001 From: shibafu Date: Mon, 10 Aug 2020 13:40:40 +0900 Subject: [PATCH] Don't report circuit break exception --- app/Exceptions/Handler.php | 1 + 1 file changed, 1 insertion(+) diff --git a/app/Exceptions/Handler.php b/app/Exceptions/Handler.php index dcb27e0..1911732 100644 --- a/app/Exceptions/Handler.php +++ b/app/Exceptions/Handler.php @@ -20,6 +20,7 @@ class Handler extends ExceptionHandler \Illuminate\Database\Eloquent\ModelNotFoundException::class, \Illuminate\Session\TokenMismatchException::class, \Illuminate\Validation\ValidationException::class, + \App\MetadataResolver\ResolverCircuitBreakException::class, ]; /**