Skip to content

Commit

Permalink
MDEV-7635: Reset sync_binlog back to 0
Browse files Browse the repository at this point in the history
  • Loading branch information
Nirbhay Choubey committed Feb 10, 2017
1 parent 8b2e642 commit 616f4a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sql/sys_vars.cc
Expand Up @@ -4674,7 +4674,7 @@ static Sys_var_uint Sys_sync_binlog_period(
"sync_binlog", "Synchronously flush binary log to disk after "
"every #th event. Use 0 (default) to disable synchronous flushing",
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(
"sync_master_info", "Synchronously flush master info to disk "
Expand Down

0 comments on commit 616f4a7

Please sign in to comment.