Skip to content

Commit

Permalink
Issue #7905 was fixed.
Browse files Browse the repository at this point in the history
  • Loading branch information
andrii0lomakin committed Nov 29, 2017
1 parent 2d684cc commit c29370d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2606,7 +2606,7 @@ public ODatabaseDocument commit(boolean force) throws OTransactionException {
currentTx.commit(force);
} catch (RuntimeException e) {

if (e instanceof OHighLevelException)
if ((e instanceof OHighLevelException) || (e instanceof ONeedRetryException))
OLogManager.instance().debug(this, "Error on transaction commit `%08X`", e, System.identityHashCode(e));
else
OLogManager.instance().error(this, "Error on transaction commit `%08X`", e, System.identityHashCode(e));
Expand Down
2 changes: 1 addition & 1 deletion server/script/server.bat
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ rem -Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=1044
rem AND ATTACH TO THE CURRENT HOST, PORT 1044

rem ORIENTDB MAXIMUM HEAP. USE SYNTAX -Xmx<memory>, WHERE <memory> HAS THE TOTAL MEMORY AND SIZE UNIT. EXAMPLE: -Xmx512m
set MAXHEAP=-Xmx512m
set MAXHEAP=-Xms2G -Xmx2G
rem ORIENTDB MAXIMUM DISKCACHE IN MB, EXAMPLE: "-Dstorage.diskCache.bufferSize=8192" FOR 8GB of DISKCACHE
set MAXDISKCACHE=

Expand Down

0 comments on commit c29370d

Please sign in to comment.