From 06ad7afa798db73806fa6ac3bffbf1f3e72cf3ef Mon Sep 17 00:00:00 2001 From: lucas cardoso Date: Wed, 22 Jun 2022 15:47:12 -0400 Subject: [PATCH] remove Throwable for Exception --- tests/test_services.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_services.php b/tests/test_services.php index 39f5587..2f3c557 100644 --- a/tests/test_services.php +++ b/tests/test_services.php @@ -19,7 +19,7 @@ while (true) { echo "executar servce_queue \n"; $servce_queue->run(); sleep(3); - } catch (\Throwable $th) { + } catch (\Exception $th) { sleep(3); logger('run_service')->info($th->getMessage()); }