Skip to content

Commit

Permalink
feat(chunk-server): disable reading chunks from disk on start up
Browse files Browse the repository at this point in the history
  • Loading branch information
menuka94 committed Sep 29, 2021
1 parent fb0fa6a commit 7c1f46b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/cs555/hw1/node/chunkServer/ChunkServer.java
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ public void initialize() {
tcpServerThread.start();
commandParser.start();

initFilesFromDisk();
// initFilesFromDisk();

Timer minorTimer = new Timer();
minorTimer.schedule(new MinorHeartbeat(), 0, Constants.ChunkServer.MINOR_HEARTBEAT_INTERVAL);
Expand Down

0 comments on commit 7c1f46b

Please sign in to comment.