From cad0dca4b843759dbd8d5396c702ba4ec47de02f Mon Sep 17 00:00:00 2001 From: Em Sharnoff Date: Sat, 18 Nov 2023 12:43:54 +0100 Subject: [PATCH] compute_ctl: Remove deprecated flag `--file-cache-on-disk` (#5622) See neondatabase/cloud#7516 for more. --- compute_tools/src/bin/compute_ctl.rs | 7 ------- 1 file changed, 7 deletions(-) diff --git a/compute_tools/src/bin/compute_ctl.rs b/compute_tools/src/bin/compute_ctl.rs index 81d4320b14..7f22bda13e 100644 --- a/compute_tools/src/bin/compute_ctl.rs +++ b/compute_tools/src/bin/compute_ctl.rs @@ -479,13 +479,6 @@ fn cli() -> clap::Command { ) .value_name("FILECACHE_CONNSTR"), ) - .arg( - // DEPRECATED, NO LONGER DOES ANYTHING. - // See https://github.com/neondatabase/cloud/issues/7516 - Arg::new("file-cache-on-disk") - .long("file-cache-on-disk") - .action(clap::ArgAction::SetTrue), - ) } #[test]