Make FIFO related validator arguments public (#28282)

#### Summary of Changes
This PR makes two FIFO-related validator arguments public:
--rocksdb_shred_compaction and --rocksdb_fifo_shred_storage_size.

#### Test Plan
* There're already ~26 validators running FIFO in mainnet-beta for more than 30 days,
   no issues were reported so far.
* Ran a validator with FIFO for days and observed it's able to consistently catch up
  and create new roots.
This commit is contained in:
Yueh-Hsuan Chiang 2022-10-09 16:42:59 -07:00 committed by GitHub
parent 60f6e24b76
commit 1224c545d5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 2 deletions

View File

@ -1011,7 +1011,6 @@ pub fn main() {
)
.arg(
Arg::with_name("rocksdb_shred_compaction")
.hidden(true)
.long("rocksdb-shred-compaction")
.value_name("ROCKSDB_COMPACTION_STYLE")
.takes_value(true)
@ -1026,7 +1025,6 @@ pub fn main() {
)
.arg(
Arg::with_name("rocksdb_fifo_shred_storage_size")
.hidden(true)
.long("rocksdb-fifo-shred-storage-size")
.value_name("SHRED_STORAGE_SIZE_BYTES")
.takes_value(true)