You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by ko...@apache.org on 2019/08/17 13:29:11 UTC

[couchdb] 02/02: Give async insert more time to complete

This is an automated email from the ASF dual-hosted git repository.

kocolosk pushed a commit to branch jenkins-elixir-retry-until-flakes
in repository https://gitbox.apache.org/repos/asf/couchdb.git

commit 1708c9c0a2b4d4078da68dac4ccc39df7c808c65
Author: Adam Kocoloski <ko...@apache.org>
AuthorDate: Sat Aug 17 09:28:39 2019 -0400

    Give async insert more time to complete
---
 test/elixir/test/batch_save_test.exs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/test/elixir/test/batch_save_test.exs b/test/elixir/test/batch_save_test.exs
index 030fcdf..48830a2 100644
--- a/test/elixir/test/batch_save_test.exs
+++ b/test/elixir/test/batch_save_test.exs
@@ -37,6 +37,6 @@ defmodule BatchSaveTest do
 
     retry_until(fn ->
       Couch.get("/#{db_name}").body["doc_count"] == expected_doc_count
-    end)
+    end, 200, 30_000)
   end
 end