Skip to content

Commit

Permalink
Fix ignored index memory configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
diegosalvi committed Dec 22, 2023
1 parent d4f7280 commit d4b9fa8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion herddb-core/src/main/java/herddb/core/DBManager.java
Original file line number Diff line number Diff line change
Expand Up @@ -471,7 +471,7 @@ public void start() throws DataStorageManagerException, LogNotAvailableException
/ ((double) (maxDataUsedMemory + maxIndexUsedMemory + maxPKUsedMemory)) * maxMemoryReference);

maxDataUsedMemory = data;
maxIndexUsedMemory = data;
maxIndexUsedMemory = index;
maxPKUsedMemory = pk;
}

Expand Down

0 comments on commit d4b9fa8

Please sign in to comment.