rebase from master

This commit is contained in:
Quentin de Quelen
2020-02-02 22:59:19 +01:00
committed by qdequele
parent 2143226f04
commit dc6907e748
29 changed files with 92 additions and 105 deletions

View File

@ -36,6 +36,7 @@ pub fn enrich_server_with_movies_index(
) -> Result<(), Box<dyn Error>> {
let body = json!({
"uid": "movies",
"identifier": "id",
})
.to_string()
.into_bytes();
@ -114,7 +115,7 @@ pub fn enrich_server_with_movies_documents(
.unwrap();
let _res = server.simulate(req).unwrap();
block_on(sleep(Duration::from_secs(5)));
block_on(sleep(Duration::from_secs(10)));
Ok(())
}