We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7817287 commit 0105a53Copy full SHA for 0105a53
master/master.cfg
@@ -7,6 +7,7 @@ import operator
7
import os
8
import re
9
from collections import defaultdict
10
+from datetime import timedelta
11
from dataclasses import dataclass
12
from functools import reduce
13
from pathlib import Path
@@ -1255,7 +1256,7 @@ c["schedulers"] = [
1255
1256
branch_fn=lambda br: br != "main",
1257
filter_fn=lambda ch: ch.properties.getProperty("basename") == "main",
1258
),
- treeStableTimer=60 * 3, # seconds
1259
+ treeStableTimer=timedelta(minutes=3).total_seconds(),
1260
builderNames=[b1.name for b1 in c["builders"]],
1261
1262
ForceScheduler(
0 commit comments