We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6013edc commit 5ce1e27Copy full SHA for 5ce1e27
src/main/java/com/experoinc/janusgraph/diskstorage/foundationdb/FoundationDBTx.java
@@ -118,7 +118,8 @@ public synchronized void commit() throws BackendException {
118
failing = false;
119
break;
120
} catch (IllegalStateException | ExecutionException e) {
121
- if (isolationLevel.equals(IsolationLevel.READ_COMMITTED_NO_WRITE)) {
+ if (isolationLevel.equals(IsolationLevel.SERIALIZABLE) ||
122
+ isolationLevel.equals(IsolationLevel.READ_COMMITTED_NO_WRITE)) {
123
124
}
125
restart();
0 commit comments