Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
badrishc committed Aug 9, 2019
1 parent 82a01a5 commit 26be7f6
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions cs/test/SimpleRecoveryTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -205,12 +205,13 @@ public void SimpleRecoveryTest3()
s1.Dispose(); // should receive persistence callback
s0.ResumeThread(); // should receive persistence callback
s0.Dispose();
fht1.Dispose();


/*
fht2.Recover(token);

var guid = s1.ID;
var s3 = fht2.ContinueClientSession(guid, out long lsn);
// var guid = s1.ID;
var s3 = fht2.StartClientSession(); // guid, out long lsn);
s3.ResumeThread();

for (int key = 0; key < numOps; key++)
Expand All @@ -225,11 +226,10 @@ public void SimpleRecoveryTest3()
}
}
s3.Dispose();
*/


log.Close();
fht1.Dispose();
// fht2.Dispose();
fht2.Dispose();
new DirectoryInfo(TestContext.CurrentContext.TestDirectory + "\\checkpoints4").Delete(true);
}
}
Expand Down

0 comments on commit 26be7f6

Please sign in to comment.