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 14:45:38 UTC

[couchdb] 01/02: Revert "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 7c25c75e3d8f20a8b47e9b4758f862f1baaa7e18
Author: Adam Kocoloski <ko...@apache.org>
AuthorDate: Sat Aug 17 10:44:52 2019 -0400

    Revert "Give async insert more time to complete"
    
    This reverts commit 1708c9c0a2b4d4078da68dac4ccc39df7c808c65.
---
 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 48830a2..030fcdf 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, 200, 30_000)
+    end)
   end
 end