This is an automated email from the ASF dual-hosted git repository.
vatamane pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/couchdb.git
The following commit(s) were added to refs/heads/main by this push:
new 60cc6ebaf Increase timeout in mango_cursor tests
60cc6ebaf is described below
commit 60cc6ebafad7e45dcdd63ac14ef5b893ab0458da
Author: Nick Vatamaniuc <[email protected]>
AuthorDate: Fri Sep 1 14:37:39 2023 -0400
Increase timeout in mango_cursor tests
Noticed two consecutive failures there on ppc64le platform. That's usually
the
slowest executor so it's probalby just a timeout. Let's try bumping it from
5
sec to 10 sec.
---
src/mango/src/mango_cursor.erl | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/src/mango/src/mango_cursor.erl b/src/mango/src/mango_cursor.erl
index e8a01eb9a..c0c8f41df 100644
--- a/src/mango/src/mango_cursor.erl
+++ b/src/mango/src/mango_cursor.erl
@@ -558,9 +558,9 @@ create_test_() ->
meck:unload()
end,
[
- ?TDEF_FE(t_create_regular),
- ?TDEF_FE(t_create_user_specified_index),
- ?TDEF_FE(t_create_invalid_user_specified_index)
+ ?TDEF_FE(t_create_regular, 10),
+ ?TDEF_FE(t_create_user_specified_index, 10),
+ ?TDEF_FE(t_create_invalid_user_specified_index, 10)
]
}.