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 99d8dac5e Increase some test timeouts to hopefully fix a flaky PPC64LE 
test
99d8dac5e is described below

commit 99d8dac5e3bd94404641ca748110a54c066a063b
Author: Nick Vatamaniuc <[email protected]>
AuthorDate: Wed Jul 23 16:50:31 2025 -0400

    Increase some test timeouts to hopefully fix a flaky PPC64LE test
    
    Noticed three failures in there on PPC64LE worker. I think it's something 
to do
    with those nodes being slow or oversubcribed or something like that. Before
    taking out PPC64LE out of the CI rotation give it another chance and see if
    just increasing the timeouts on these tests would help.
---
 src/couch_replicator/src/couch_replicator_fabric_rpc.erl | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/src/couch_replicator/src/couch_replicator_fabric_rpc.erl 
b/src/couch_replicator/src/couch_replicator_fabric_rpc.erl
index 1a3582928..680a758b8 100644
--- a/src/couch_replicator/src/couch_replicator_fabric_rpc.erl
+++ b/src/couch_replicator/src/couch_replicator_fabric_rpc.erl
@@ -106,7 +106,7 @@ docs_test_() ->
         fun() -> ok end,
         fun(_) -> ok end,
         [
-            ?TDEF_FE(t_docs)
+            ?TDEF_FE(t_docs, 15)
         ]
     }.
 
@@ -140,10 +140,10 @@ docs_cb_test_() ->
         end,
         fun(_) -> meck:unload() end,
         [
-            ?TDEF_FE(t_docs_cb_meta),
-            ?TDEF_FE(t_docs_cb_row_skip),
-            ?TDEF_FE(t_docs_cb_row),
-            ?TDEF_FE(t_docs_cb_complete)
+            ?TDEF_FE(t_docs_cb_meta, 15),
+            ?TDEF_FE(t_docs_cb_row_skip, 15),
+            ?TDEF_FE(t_docs_cb_row, 15),
+            ?TDEF_FE(t_docs_cb_complete, 15)
         ]
     }.
 

Reply via email to