1
0
mirror of https://github.com/elisspace/autopsy.git synced 2026-09-06 02:24:30 +00:00

fix stats init

This commit is contained in:
adam-m
2012-02-01 15:46:08 -05:00
parent 660627c05c
commit ff90fdeffe

View File

@@ -209,12 +209,12 @@ public class IngestManager {
}
if (startFsContentIngester) {
stats = new IngestManagerStats();
fsContentIngester = new IngestFsContentThread();
//init all fs services, everytime new worker starts
for (IngestServiceFsContent s : fsContentServices) {
s.init(this);
}
stats = new IngestManagerStats();
fsContentIngester.execute();
}
}