summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xdev/run6
1 files changed, 6 insertions, 0 deletions
diff --git a/dev/run b/dev/run
index 4924de1f6..b5bea0946 100755
--- a/dev/run
+++ b/dev/run
@@ -285,6 +285,12 @@ def hack_default_ini(ctx, node, contents):
contents,
flags=re.MULTILINE)
+ # #957: Too many iterations breaks cluster setup on slow CI runs
+ contents = re.sub(
+ "^iterations = 10000 ",
+ "iterations = 10 ",
+ contents,
+ flags=re.MULTILINE)
return contents