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 52a39da commit 6462cbeCopy full SHA for 6462cbe
src/Http/Controllers/QueueController.php
@@ -16,6 +16,9 @@ class QueueController extends Controller
16
public function process(Request $request)
17
{
18
try {
19
+
20
+ set_time_limit(config('queue_manager.timeout'));
21
22
$data = json_decode($request->get('data'));
23
$service = unserialize($data->data->command);
24
$service->execute();
0 commit comments