mirror of
https://github.com/meilisearch/meilisearch.git
synced 2024-11-23 02:27:40 +08:00
fix(test): Reduce default index size in tests
This commit is contained in:
parent
c3003065e8
commit
a7bff35e49
@ -150,8 +150,8 @@ pub fn default_settings(dir: impl AsRef<Path>) -> Opt {
|
|||||||
env: "development".to_owned(),
|
env: "development".to_owned(),
|
||||||
#[cfg(all(not(debug_assertions), feature = "analytics"))]
|
#[cfg(all(not(debug_assertions), feature = "analytics"))]
|
||||||
no_analytics: true,
|
no_analytics: true,
|
||||||
max_index_size: Byte::from_unit(4.0, ByteUnit::GiB).unwrap(),
|
max_index_size: Byte::from_unit(100.0, ByteUnit::MiB).unwrap(),
|
||||||
max_task_db_size: Byte::from_unit(4.0, ByteUnit::GiB).unwrap(),
|
max_task_db_size: Byte::from_unit(1.0, ByteUnit::GiB).unwrap(),
|
||||||
http_payload_size_limit: Byte::from_unit(10.0, ByteUnit::MiB).unwrap(),
|
http_payload_size_limit: Byte::from_unit(10.0, ByteUnit::MiB).unwrap(),
|
||||||
snapshot_dir: ".".into(),
|
snapshot_dir: ".".into(),
|
||||||
indexer_options: IndexerOpts {
|
indexer_options: IndexerOpts {
|
||||||
|
@ -77,13 +77,12 @@ async fn get_and_paginate_indexes() {
|
|||||||
const NB_INDEXES: usize = 50;
|
const NB_INDEXES: usize = 50;
|
||||||
for i in 0..NB_INDEXES {
|
for i in 0..NB_INDEXES {
|
||||||
server.index(&format!("test_{i:02}")).create(None).await;
|
server.index(&format!("test_{i:02}")).create(None).await;
|
||||||
|
server
|
||||||
|
.index(&format!("test_{i:02}"))
|
||||||
|
.wait_task(i as u64)
|
||||||
|
.await;
|
||||||
}
|
}
|
||||||
|
|
||||||
server
|
|
||||||
.index(&format!("test_{NB_INDEXES}"))
|
|
||||||
.wait_task(NB_INDEXES as u64 - 1)
|
|
||||||
.await;
|
|
||||||
|
|
||||||
// basic
|
// basic
|
||||||
let (response, code) = server.list_indexes(None, None).await;
|
let (response, code) = server.list_indexes(None, None).await;
|
||||||
assert_eq!(code, 200);
|
assert_eq!(code, 200);
|
||||||
|
Loading…
Reference in New Issue
Block a user