File tree Expand file tree Collapse file tree 2 files changed +8
-4
lines changed
packages/cli-v3/templates Expand file tree Collapse file tree 2 files changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -4,8 +4,10 @@ export default defineConfig({
4
4
project: "${projectRef}",
5
5
runtime: "${runtime}",
6
6
logLevel: "log",
7
- // Set the maxDuration to 300 seconds for all tasks. See https://trigger.dev/docs/runs/max-duration
8
- // maxDuration: 300,
7
+ // The max compute seconds a task is allowed to run. If the task run exceeds this duration, it will be stopped.
8
+ // You can override this on an individual task.
9
+ // See https://trigger.dev/docs/runs/max-duration
10
+ maxDuration: 3600,
9
11
retries: {
10
12
enabledInDev: true,
11
13
default: {
Original file line number Diff line number Diff line change @@ -4,8 +4,10 @@ export default defineConfig({
4
4
project: "${projectRef}",
5
5
runtime: "${runtime}",
6
6
logLevel: "log",
7
- // Set the maxDuration to 300 seconds for all tasks. See https://trigger.dev/docs/runs/max-duration
8
- // maxDuration: 300,
7
+ // The max compute seconds a task is allowed to run. If the task run exceeds this duration, it will be stopped.
8
+ // You can override this on an individual task.
9
+ // See https://trigger.dev/docs/runs/max-duration
10
+ maxDuration: 3600,
9
11
retries: {
10
12
enabledInDev: true,
11
13
default: {
You can’t perform that action at this time.
0 commit comments