mirror of
https://github.com/meilisearch/MeiliSearch
synced 2024-11-11 07:28:56 +01:00
review change
This commit is contained in:
parent
7c24fea9f2
commit
87ae0032bf
@ -21,7 +21,7 @@ use serde_json::Value;
|
|||||||
use std::io::ErrorKind;
|
use std::io::ErrorKind;
|
||||||
use tempfile::tempfile;
|
use tempfile::tempfile;
|
||||||
use tokio::fs::File;
|
use tokio::fs::File;
|
||||||
use tokio::io::{AsyncSeekExt, AsyncWriteExt};
|
use tokio::io::{AsyncSeekExt, AsyncWriteExt, BufWriter};
|
||||||
|
|
||||||
use crate::analytics::{Analytics, DocumentDeletionKind};
|
use crate::analytics::{Analytics, DocumentDeletionKind};
|
||||||
use crate::error::MeilisearchHttpError;
|
use crate::error::MeilisearchHttpError;
|
||||||
@ -237,7 +237,8 @@ async fn document_addition(
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
let mut buffer = File::from_std(temp_file);
|
let async_file = File::from_std(temp_file);
|
||||||
|
let mut buffer = BufWriter::new(async_file);
|
||||||
|
|
||||||
let mut buffer_write_size: usize = 0;
|
let mut buffer_write_size: usize = 0;
|
||||||
while let Some(bytes) = body.next().await {
|
while let Some(bytes) = body.next().await {
|
||||||
@ -267,7 +268,7 @@ async fn document_addition(
|
|||||||
return Err(MeilisearchHttpError::Payload(ReceivePayloadErr(Box::new(e))));
|
return Err(MeilisearchHttpError::Payload(ReceivePayloadErr(Box::new(e))));
|
||||||
};
|
};
|
||||||
|
|
||||||
let read_file = buffer.into_std().await;
|
let read_file = buffer.into_inner().into_std().await;
|
||||||
|
|
||||||
let documents_count =
|
let documents_count =
|
||||||
tokio::task::spawn_blocking(move || -> Result<_, MeilisearchHttpError> {
|
tokio::task::spawn_blocking(move || -> Result<_, MeilisearchHttpError> {
|
||||||
|
Loading…
Reference in New Issue
Block a user