diff --git a/CHANGELOG.md b/CHANGELOG.md index aa50b2f2d62ec4..1ec93c59020276 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -25,6 +25,8 @@ Release channels have their own copy of this changelog: * removed the unreleased `redelegate` instruction processor and CLI commands (#2213) * Banks-client: * relax functions to use `&self` instead of `&mut self` (#2591) + * `agave-validator`: + * Remove the deprecated value of `fifo` for `--rocksdb-shred-compaction` (#3451) * Changes * SDK: * removed the `respan` macro. This was marked as "internal use only" and was no longer used internally. diff --git a/validator/src/cli.rs b/validator/src/cli.rs index e413d1b1f7371f..851ce6bcc31573 100644 --- a/validator/src/cli.rs +++ b/validator/src/cli.rs @@ -666,14 +666,12 @@ pub fn app<'a>(version: &'a str, default_args: &'a DefaultArgs) -> App<'a, 'a> { .long("rocksdb-shred-compaction") .value_name("ROCKSDB_COMPACTION_STYLE") .takes_value(true) - .possible_values(&["level", "fifo"]) + .possible_values(&["level"]) .default_value(&default_args.rocksdb_shred_compaction) .help( "Controls how RocksDB compacts shreds. *WARNING*: You will lose your \ Blockstore data when you switch between options. Possible values are: \ - 'level': stores shreds using RocksDB's default (level) compaction. \ - 'fifo': stores shreds under RocksDB's FIFO compaction. This option is more \ - efficient on disk-write-bytes of the Blockstore.", + 'level': stores shreds using RocksDB's default (level) compaction.", ), ) .arg(