Skip to content

Commit ef0a102

Browse files
committed
short circuit cleanup
1 parent 4c744bd commit ef0a102

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/main/java/com/lowtuna/jsonblob/core/BlobCleanupJob.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,10 @@ public class BlobCleanupJob implements Runnable {
2525

2626
@Override
2727
public void run() {
28+
if (true) {
29+
return;
30+
}
31+
2832
try {
2933
List<String> dataDirs = Lists.newCopyOnWriteArrayList();
3034

0 commit comments

Comments
 (0)