-
Type:
Bug
-
Resolution: Done
-
Priority:
Major - P3
-
Affects Version/s: None
-
Component/s: Replication
-
None
-
Fully Compatible
-
ALL
-
0
-
None
-
None
-
None
-
None
-
None
-
None
-
None
backup_restore.js
// Perform the data backup to new secondary
if (options.backup == 'fsyncLock') {
// Test that the secondary supports fsyncLock
var ret = secondary.getDB("admin").fsyncLock();
if (!ret.ok) {
Due to the load from the CRUD and FSM clients, we should wait for the non-primary nodes to become SECONDARY before running the fsync command. This should stabilize the test in the face of any rollbacks.