Skip to content

Commit e0994c3

Browse files
committed
fix: bump MAX_ROUTES up to 64
This has apparently been the limit in Taskcluster since 2019, but we never noticed / bothered to update it here.
1 parent 75590be commit e0994c3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/taskgraph/morph.py

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

3131
here = os.path.abspath(os.path.dirname(__file__))
3232
logger = logging.getLogger(__name__)
33-
MAX_ROUTES = 10
33+
MAX_ROUTES = 64
3434

3535
registered_morphs = []
3636

0 commit comments

Comments
 (0)