fix missed sync of recovery file
This commit is contained in:
Timothy Bish 2014-11-25 18:49:55 -05:00
parent 0514fcf882
commit 4141d6a223
1 changed files with 1 additions and 1 deletions

View File

@ -1091,7 +1091,7 @@ public class PageFile {
if (enableDiskSyncs) {
// Sync to make sure recovery buffer writes land on disk..
if (enableRecoveryFile) {
writeFile.sync();
recoveryFile.sync();
}
writeFile.sync();
}