This is an automated email from the ASF dual-hosted git repository.
wohali pushed a commit to branch increase-default-rounds
in repository https://gitbox.apache.org/repos/asf/couchdb.git
The following commit(s) were added to refs/heads/increase-default-rounds by
this push:
new 492242e Reduce default iterations for dev instances/CI runs
492242e is described below
commit 492242e0d6a2667496383456dfbafd4a59b0aae8
Author: Joan Touzet <[email protected]>
AuthorDate: Thu Nov 2 18:10:58 2017 -0400
Reduce default iterations for dev instances/CI runs
---
dev/run | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/dev/run b/dev/run
index 4924de1..b5bea09 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
--
To stop receiving notification emails like this one, please contact
['"[email protected]" <[email protected]>'].