This is an automated email from the ASF dual-hosted git repository. vatamane pushed a commit to branch fix-flaky-db-crud-test in repository https://gitbox.apache.org/repos/asf/couchdb.git
commit 5efd119c9b316dc3627ce6de9bb301621131583b Author: Nick Vatamaniuc <[email protected]> AuthorDate: Wed Apr 29 14:01:32 2020 -0400 Fix list_dbs_info_tx_too_old flaky test On CI creating a 100 dbs in a row was too much to do in 5 seconds so bump it to 15. --- src/fabric/test/fabric2_db_crud_tests.erl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fabric/test/fabric2_db_crud_tests.erl b/src/fabric/test/fabric2_db_crud_tests.erl index d5025b9..9deb8dd 100644 --- a/src/fabric/test/fabric2_db_crud_tests.erl +++ b/src/fabric/test/fabric2_db_crud_tests.erl @@ -46,7 +46,7 @@ crud_test_() -> ?TDEF_FE(list_dbs_info), ?TDEF_FE(list_dbs_info_partial), ?TDEF_FE(list_dbs_tx_too_old), - ?TDEF_FE(list_dbs_info_tx_too_old), + ?TDEF_FE(list_dbs_info_tx_too_old, 15), ?TDEF_FE(list_deleted_dbs_info), ?TDEF_FE(list_deleted_dbs_info_user_fun), ?TDEF_FE(list_deleted_dbs_info_user_fun_partial),
