actually allow to used fastlog derived data type

Summary: I've forgotten to amend before lending changes

Reviewed By: StanislavGlebik

Differential Revision: D17261853

fbshipit-source-id: 99a050a06348dd4fcc2b45e6243c1e56369bb0e9
This commit is contained in:
Pavel Aslanov 2019-09-10 02:42:38 -07:00 committed by Facebook Github Bot
parent 9ad20e4e75
commit 2f8314e204

View File

@ -56,7 +56,7 @@ fn main() -> Result<(), Error> {
Arg::with_name(ARG_DERIVED_DATA_TYPE)
.required(true)
.index(1)
.possible_values(&[RootUnodeManifestId::NAME])
.possible_values(&[RootUnodeManifestId::NAME, RootFastlog::NAME])
.help("derived data type for which backfill will be run"),
),
)
@ -68,7 +68,7 @@ fn main() -> Result<(), Error> {
.required(true)
.multiple(true)
.index(1)
.possible_values(&[RootUnodeManifestId::NAME])
.possible_values(&[RootUnodeManifestId::NAME, RootFastlog::NAME])
.help("comma separated list of derived data types"),
),
);