Commit 616f4a77 authored by Nirbhay Choubey's avatar Nirbhay Choubey

MDEV-7635: Reset sync_binlog back to 0

parent 8b2e642a
...@@ -4674,7 +4674,7 @@ static Sys_var_uint Sys_sync_binlog_period( ...@@ -4674,7 +4674,7 @@ static Sys_var_uint Sys_sync_binlog_period(
"sync_binlog", "Synchronously flush binary log to disk after " "sync_binlog", "Synchronously flush binary log to disk after "
"every #th event. Use 0 (default) to disable synchronous flushing", "every #th event. Use 0 (default) to disable synchronous flushing",
GLOBAL_VAR(sync_binlog_period), CMD_LINE(REQUIRED_ARG), GLOBAL_VAR(sync_binlog_period), CMD_LINE(REQUIRED_ARG),
VALID_RANGE(0, UINT_MAX), DEFAULT(1), BLOCK_SIZE(1)); VALID_RANGE(0, UINT_MAX), DEFAULT(0), BLOCK_SIZE(1));
static Sys_var_uint Sys_sync_masterinfo_period( static Sys_var_uint Sys_sync_masterinfo_period(
"sync_master_info", "Synchronously flush master info to disk " "sync_master_info", "Synchronously flush master info to disk "
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment