Fix DEFAULT_GC_PERIOD_SEC type

This commit is contained in:
Konstantin Knizhnik
2021-04-22 12:01:25 +03:00
parent 546266b86d
commit 2ca8fbb6ff
3 changed files with 6 additions and 3 deletions

View File

@@ -20,7 +20,7 @@ use slog::Drain;
use pageserver::{page_service, tui, zenith_repo_dir, PageServerConf};
const DEFAULT_GC_HORIZON: u64 = 0; //64 * 1024 * 1024;
const DEFAULT_GC_PERIOD_SEC: u32 = 1;
const DEFAULT_GC_PERIOD_SEC: u64 = 1;
fn main() -> Result<()> {
let arg_matches = App::new("Zenith page server")