Skip to content

Commit b67aceb

Browse files
authored
Add environment variable for per_schedule_task_limit (pterodactyl#3557)
The environment variable `PTERODACTYL_PER_SCHEDULE_TASK_LIMIT` can be used to change the maximum number of tasks per schedule.
1 parent b4cae91 commit b67aceb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

config/pterodactyl.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@
141141

142142
'schedules' => [
143143
// The total number of tasks that can exist for any given schedule at once.
144-
'per_schedule_task_limit' => 10,
144+
'per_schedule_task_limit' => env('PTERODACTYL_PER_SCHEDULE_TASK_LIMIT', 10),
145145
],
146146

147147
'allocations' => [

0 commit comments

Comments
 (0)