File tree Expand file tree Collapse file tree 1 file changed +1
-1
lines changed
src/main/java/com/actiontech/dble Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Original file line number Diff line number Diff line change @@ -326,7 +326,7 @@ public void startup() throws IOException {
326
326
//minimum allocation unit
327
327
short bufferPoolChunkSize = system .getBufferPoolChunkSize ();
328
328
if ((long ) bufferPoolPageSize * (long ) bufferPoolPageNumber > Platform .getMaxDirectMemory ()) {
329
- throw new IOException ("Direct BufferPool size[bufferPoolPageSize(" + bufferPoolPageSize + ")*bufferPoolPageNumber(" + bufferPoolPageNumber + ")] lager than MaxDirectMemory[" + Platform .getMaxDirectMemory () + "]" );
329
+ throw new IOException ("Direct BufferPool size[bufferPoolPageSize(" + bufferPoolPageSize + ")*bufferPoolPageNumber(" + bufferPoolPageNumber + ")] larger than MaxDirectMemory[" + Platform .getMaxDirectMemory () + "]" );
330
330
}
331
331
bufferPool = new DirectByteBufferPool (bufferPoolPageSize , bufferPoolChunkSize , bufferPoolPageNumber );
332
332
You can’t perform that action at this time.
0 commit comments