Skip to content

Commit 0105a53

Browse files
committed
Reduce treeStableTimer to 3 minutes
1 parent 7817287 commit 0105a53

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

master/master.cfg

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ import operator
77
import os
88
import re
99
from collections import defaultdict
10+
from datetime import timedelta
1011
from dataclasses import dataclass
1112
from functools import reduce
1213
from pathlib import Path
@@ -1255,7 +1256,7 @@ c["schedulers"] = [
12551256
branch_fn=lambda br: br != "main",
12561257
filter_fn=lambda ch: ch.properties.getProperty("basename") == "main",
12571258
),
1258-
treeStableTimer=60 * 3, # seconds
1259+
treeStableTimer=timedelta(minutes=3).total_seconds(),
12591260
builderNames=[b1.name for b1 in c["builders"]],
12601261
),
12611262
ForceScheduler(

0 commit comments

Comments
 (0)