You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Oct 18, 2021. It is now read-only.
"Support deleting more than 10 docs" in {
val insertFutures = (0 to 11).map(i => restClient.index(index, tpe, Document(s"doc$i", Map("text7" -> "here7"))))
val ir = Future.sequence(insertFutures)
Await.result(ir, 10.seconds)
refresh()
val delFut = restClient.deleteDocument(index, tpe, new QueryRoot(MatchAll))
Await.result(delFut, 10.seconds)
refresh()
val count = Await.result(restClient.count(index, tpe, new QueryRoot(MatchAll)), 10.seconds)
count should be (0)
}
Failure mode:
- should Support deleting more than 10 docs *** FAILED ***
2 was not equal to 0 (RestlasticSearchClientTest.scala:314)