From b67aceb685b2a757ae45d65830941699eaaa0e77 Mon Sep 17 00:00:00 2001 From: Omar Kamel <30291302+TekExplorer@users.noreply.github.com> Date: Fri, 20 Aug 2021 13:07:05 -0400 Subject: [PATCH] Add environment variable for `per_schedule_task_limit` (#3557) The environment variable `PTERODACTYL_PER_SCHEDULE_TASK_LIMIT` can be used to change the maximum number of tasks per schedule. --- config/pterodactyl.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/pterodactyl.php b/config/pterodactyl.php index db08688d..b7cd1255 100644 --- a/config/pterodactyl.php +++ b/config/pterodactyl.php @@ -141,7 +141,7 @@ return [ 'schedules' => [ // The total number of tasks that can exist for any given schedule at once. - 'per_schedule_task_limit' => 10, + 'per_schedule_task_limit' => env('PTERODACTYL_PER_SCHEDULE_TASK_LIMIT', 10), ], 'allocations' => [