Add date of birth generation

This commit is contained in:
nolash 2021-02-18 14:30:42 +01:00
parent 3725130f82
commit c415a6b180
Signed by untrusted user who does not match committer: lash
GPG Key ID: 21D2E7BB88C2A746

View File

@ -74,7 +74,7 @@ new cic.PGPKeyStore(
importMeta, importMeta,
); );
const batchSize = 4; const batchSize = 50;
const batchDelay = 1000; const batchDelay = 1000;
const total = parseInt(process.argv[3]); const total = parseInt(process.argv[3]);
const workDir = path.join(process.argv[2], 'meta'); const workDir = path.join(process.argv[2], 'meta');
@ -103,7 +103,6 @@ function importMeta(keystore) {
console.debug('skipping file', file); console.debug('skipping file', file);
} }
const filePath = path.join(workDir, file); const filePath = path.join(workDir, file);
//console.log('file', count, filePath);
doOne(keystore, filePath); doOne(keystore, filePath);
count++; count++;
batchCount++; batchCount++;