Commit 8d22e35e authored by Chris Gioran's avatar Chris Gioran
Browse files

Added a comment

parent 7beb630b
Showing with 6 additions and 0 deletions
+6 -0
......@@ -1251,6 +1251,12 @@ public class HighlyAvailableGraphDatabase
{
if ( e.getCause() instanceof NoSuchLogVersionException )
{
/*
* This means the master was unable to find a log entry for the txid we just asked. This
* probably means the thing we asked for is too old or too new. Anyway, since it doesn't
* have the tx it is better if we just throw our store away and ask for a new copy. Next
* time around it shouldn't have to even pass from here.
*/
throw new BranchedDataException( "Maybe not branched data, but it could solve it", e.getCause() );
}
else
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment