Skip to content

Commit 483a4b7

Browse files
Mikael Ronströmsreedhars
authored andcommitted
WL#9638: EnableRedoControl default to false
(cherry picked from commit 0bb3e8ffe73b6e12908fe3668a73d93d3258f54e)
1 parent 7a844ec commit 483a4b7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

storage/ndb/src/kernel/blocks/backup/BackupInit.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -254,7 +254,7 @@ Backup::execREAD_CONFIG_REQ(Signal* signal)
254254
ndb_mgm_get_int_parameter(p, CFG_DB_ENABLE_PARTIAL_LCP,
255255
&m_enable_partial_lcp);
256256

257-
m_enable_redo_control = 1; /* Default to enabled */
257+
m_enable_redo_control = 0; /* Default to disabled */
258258
ndb_mgm_get_int_parameter(p, CFG_DB_ENABLE_REDO_CONTROL,
259259
&m_enable_redo_control);
260260

storage/ndb/src/mgmsrv/ConfigInfo.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2269,7 +2269,7 @@ const ConfigInfo::ParamInfo ConfigInfo::m_ParamInfo[] = {
22692269
ConfigInfo::CI_USED,
22702270
0,
22712271
ConfigInfo::CI_BOOL,
2272-
"true",
2272+
"false",
22732273
"false",
22742274
"true"
22752275
},

0 commit comments

Comments
 (0)