1
1
mirror of https://github.com/MarginaliaSearch/MarginaliaSearch.git synced 2025-10-06 07:32:38 +02:00

Compare commits

...

1 Commits

Author SHA1 Message Date
Viktor Lofgren
36581b25c2 (ndp) Fix process tracking in domain discovery process 2025-06-21 14:35:25 +02:00

View File

@@ -81,7 +81,7 @@ public class NdpMain extends ProcessMainClass {
int cnt; int cnt;
while ((cnt = domainCount.get()) < toInsertCount) { while ((cnt = domainCount.get()) < toInsertCount) {
if (cnt % 100 == 0) { if (cnt % 100 == 0) {
hb.progress("Discovered Domains", domainCount.get(), cnt); hb.progress("Discovery Process", cnt, toInsertCount);
} }
var nextDomain = domainTestingQueue.next(); var nextDomain = domainTestingQueue.next();