Skip to content

Commit da4ff09

Browse files
committed
Increased max file limit per repo to 10,000
1 parent d9c3780 commit da4ff09

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

stackmuncher_lib/src/report.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ impl Report {
150150
/// Repos with this more files than this are ignored
151151
/// This is a temporary measure. The file count should be taken after some files were ignored,
152152
/// but since ignoring files like nodejs modules is not implemented we'll just ignore such repos.
153-
pub const MAX_FILES_PER_REPO: usize = 5000;
153+
pub const MAX_FILES_PER_REPO: usize = 10000;
154154

155155
/// Adds up `tech` totals from `other_report` into `self`, clears unprocessed files and unknown extensions.
156156
pub fn merge(merge_into: Option<Self>, other_report: Self) -> Option<Self> {

0 commit comments

Comments
 (0)