Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@
public class DUFactory implements SpaceUsageCheckFactory {

private static final String DU_CACHE_FILE = "scmUsed";
private static final String EXCLUDE_PATTERN = "*.tmp.*";

private Conf conf;

Expand All @@ -46,7 +45,7 @@ public SpaceUsageCheckFactory setConfiguration(
public SpaceUsageCheckParams paramsFor(File dir) {
Duration refreshPeriod = conf.getRefreshPeriod();

SpaceUsageSource source = new DU(dir, EXCLUDE_PATTERN);
SpaceUsageSource source = new DU(dir, null);

SpaceUsagePersistence persistence = new SaveSpaceUsageToFile(
new File(dir, DU_CACHE_FILE), refreshPeriod);
Expand Down