From a0eb50552b35aa2d678747fc9c647d6ed85641be Mon Sep 17 00:00:00 2001 From: Heikki Linnakangas Date: Sat, 14 May 2022 14:26:05 +0300 Subject: [PATCH] rustfmt --- pageserver/src/config.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pageserver/src/config.rs b/pageserver/src/config.rs index 38881adbf0..ab5a2ec2be 100644 --- a/pageserver/src/config.rs +++ b/pageserver/src/config.rs @@ -24,7 +24,7 @@ use crate::tenant_config::{TenantConf, TenantConfOpt}; pub const ZSTD_MAX_SAMPLES: usize = 1024; pub const ZSTD_MIN_SAMPLES: usize = 8; // magic requirement of zstd pub const ZSTD_MAX_SAMPLE_BYTES: usize = 10 * 1024 * 1024; // max memory size for holding samples -pub const ZSTD_MAX_DICTIONARY_SIZE: usize = 8 * 1024 - 4; // make dictionary + BLOB length fit in first page +pub const ZSTD_MAX_DICTIONARY_SIZE: usize = 8 * 1024 - 4; // make dictionary + BLOB length fit in first page pub const ZSTD_COMPRESSION_LEVEL: i32 = 0; // default compression level pub mod defaults {