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

[CBRD-25664] Excluded -1 from the valid range of the page_flush_interval system parameter #5638

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/base/system_parameter.c
Original file line number Diff line number Diff line change
Expand Up @@ -1179,7 +1179,7 @@ static unsigned int prm_pb_num_LRU_chains_flag = 0;

int PRM_PAGE_BG_FLUSH_INTERVAL_MSEC = 1000;
static int prm_page_bg_flush_interval_msec_default = 1000;
static int prm_page_bg_flush_interval_msec_lower = -1;
static int prm_page_bg_flush_interval_msec_lower = 0;
static unsigned int prm_page_bg_flush_interval_msec_flag = 0;

bool PRM_ADAPTIVE_FLUSH_CONTROL = true;
Expand Down
Loading