Remove unused duplicate DEFAULT_INGEST_BATCH_SIZE constant

This constant in 'tenant_conf_defaults' was unused, but there's
another constant with the same name in the global 'defaults'. I wish
the setting was configurable per-tenant, but it isn't, so let's remove
the confusing duplicate.
This commit is contained in:
Heikki Linnakangas
2024-09-18 23:46:09 +03:00
committed by Heikki Linnakangas
parent 06d55a3b12
commit 7c489092b7

View File

@@ -434,8 +434,6 @@ pub mod tenant_conf_defaults {
// By default ingest enough WAL for two new L0 layers before checking if new image
// image layers should be created.
pub const DEFAULT_IMAGE_LAYER_CREATION_CHECK_THRESHOLD: u8 = 2;
pub const DEFAULT_INGEST_BATCH_SIZE: u64 = 100;
}
impl Default for TenantConfigToml {