@@ -298,17 +298,6 @@ class CloudFileSystemOptions {
298298 // Default: false
299299 bool resync_on_open;
300300
301- // Experimental option!
302- // This option only affects how resync_on_open works. If resync_on_open is
303- // true, and resync_manifest_on_open is true, besides fetching CLOUDMANFIEST
304- // from s3, we will fetch latest MANIFEST file as well.
305- //
306- // This is a temporary option to help quickly rollback the change if something
307- // unexpected is wrong.
308- // TODO(wei): remove this option once we are confident about the change.
309- // Default: true
310- bool resync_manifest_on_open;
311-
312301 // If true, we will skip the dbid verification on startup. This is currently
313302 // only used in tests and is not recommended setting.
314303 // Default: false
@@ -418,7 +407,6 @@ class CloudFileSystemOptions {
418407 bool _server_side_encryption = false , std::string _encryption_key_id = " " ,
419408 bool _create_bucket_if_missing = true , uint64_t _request_timeout_ms = 0 ,
420409 bool _run_purger = false , bool _resync_on_open = false ,
421- bool _resync_manifest_on_open = true ,
422410 bool _skip_dbid_verification = false ,
423411 bool _use_aws_transfer_manager = false ,
424412 int _number_objects_listed_in_one_iteration = 5000 ,
@@ -443,7 +431,6 @@ class CloudFileSystemOptions {
443431 request_timeout_ms(_request_timeout_ms),
444432 run_purger(_run_purger),
445433 resync_on_open(_resync_on_open),
446- resync_manifest_on_open(_resync_manifest_on_open),
447434 skip_dbid_verification(_skip_dbid_verification),
448435 use_aws_transfer_manager(_use_aws_transfer_manager),
449436 number_objects_listed_in_one_iteration(
0 commit comments