1
0
Fork 0

raised sleep

This commit is contained in:
Frank Celler 2016-02-13 21:36:51 +01:00
parent b734e4c228
commit 0f88ade568
1 changed files with 5 additions and 4 deletions

View File

@ -347,7 +347,7 @@ describe ArangoDB do
it "fetches a create collection action from the follow log" do
ArangoDB.drop_collection("UnitTestsReplication")
sleep 1
sleep 5
cmd = api + "/logger-state"
doc = ArangoDB.log_get("#{prefix}-follow-create-collection", cmd, :body => "")
@ -357,7 +357,8 @@ describe ArangoDB do
cid = ArangoDB.create_collection("UnitTestsReplication")
sleep 1
sleep 5
cmd = api + "/logger-follow?from=" + fromTick
doc = ArangoDB.log_get("#{prefix}-follow-create-collection", cmd, :body => "", :format => :plain)
doc.code.should eq(200)
@ -408,7 +409,7 @@ describe ArangoDB do
it "fetches some collection operations from the follow log" do
ArangoDB.drop_collection("UnitTestsReplication")
sleep 1
sleep 5
cmd = api + "/logger-state"
doc = ArangoDB.log_get("#{prefix}-follow-collection", cmd, :body => "")
@ -435,7 +436,7 @@ describe ArangoDB do
doc = ArangoDB.log_delete("#{prefix}-follow-collection", cmd)
doc.code.should eq(200)
sleep 1
sleep 5
cmd = api + "/logger-follow?from=" + fromTick
doc = ArangoDB.log_get("#{prefix}-follow-create-collection", cmd, :body => "", :format => :plain)