Skip to content

Commit

Permalink
[ISSUE #103] fix: The variable DLedgerMmapFileStore#isDiskFull should…
Browse files Browse the repository at this point in the history
… be decorated with the volatile
  • Loading branch information
XiaoyiPeng committed Jan 18, 2022
1 parent e008ef5 commit 6c33d13
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ public class DLedgerMmapFileStore extends DLedgerStore {
private ThreadLocal<ByteBuffer> localIndexBuffer;
private FlushDataService flushDataService;
private CleanSpaceService cleanSpaceService;
private boolean isDiskFull = false;
private volatile boolean isDiskFull = false;

private long lastCheckPointTimeMs = System.currentTimeMillis();

Expand Down

0 comments on commit 6c33d13

Please sign in to comment.