Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

pacific: common/options: turn off bluestore_fsck_quick_fix_on_mount by default #40309

Merged
merged 1 commit into from Mar 23, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/common/options.cc
Expand Up @@ -4634,7 +4634,7 @@ std::vector<Option> get_global_options() {
.set_description("Run deep fsck at mount when bluestore_fsck_on_mount is set to true"),

Option("bluestore_fsck_quick_fix_on_mount", Option::TYPE_BOOL, Option::LEVEL_DEV)
.set_default(true)
.set_default(false)
.set_description("Do quick-fix for the store at mount"),

Option("bluestore_fsck_on_umount", Option::TYPE_BOOL, Option::LEVEL_DEV)
Expand Down