Skip to content

Commit

Permalink
to avoid incompatible
Browse files Browse the repository at this point in the history
  • Loading branch information
mxsm committed Apr 24, 2023
1 parent a07f00c commit 177ff63
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ public class MessageStoreConfig {
private int commitLogSwapMapReserveFileNum = 100;
private long logicQueueForceSwapMapInterval = 12L * 60 * 60 * 1000;
private long logicQueueSwapMapInterval = 1L * 60 * 60 * 1000;
private long cleanSwappedMapInterval = 5L * 60 * 1000;
private long cleanSwapedMapInterval = 5L * 60 * 1000;
private int logicQueueSwapMapReserveFileNum = 20;

private boolean searchBcqByCacheEnable = true;
Expand Down Expand Up @@ -1228,12 +1228,12 @@ public void setLogicQueueSwapMapReserveFileNum(int logicQueueSwapMapReserveFileN
this.logicQueueSwapMapReserveFileNum = logicQueueSwapMapReserveFileNum;
}

public long getCleanSwappedMapInterval() {
return cleanSwappedMapInterval;
public long getCleanSwapedMapInterval() {
return cleanSwapedMapInterval;
}

public void setCleanSwappedMapInterval(long cleanSwappedMapInterval) {
this.cleanSwappedMapInterval = cleanSwappedMapInterval;
public void setCleanSwapedMapInterval(long cleanSwapedMapInterval) {
this.cleanSwapedMapInterval = cleanSwapedMapInterval;
}

public long getCommitLogSwapMapInterval() {
Expand Down

0 comments on commit 177ff63

Please sign in to comment.