We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9ab5a81 commit 9591b39Copy full SHA for 9591b39
src/TaskHandler.php
@@ -86,7 +86,6 @@ private function captureTask($task): array
86
try {
87
$validator->validate();
88
} catch (ValidationException $e) {
89
- report($e);
90
if (config('app.debug')) {
91
throw $e;
92
} else {
@@ -136,7 +135,6 @@ private function handleTask(array $task): void
136
135
$apiTask = CloudTasksApi::getTask($fullTaskName);
137
} catch (ApiException $e) {
138
if (in_array($e->getStatus(), ['NOT_FOUND', 'PRECONDITION_FAILED'])) {
139
140
abort(404);
141
}
142
0 commit comments