Update Stripe concurrency in members importer

no issue

- There were many failed import records due to rate-limit errors. With concurrency of 9 imports go through with 100% success
- Would need to verify these limits with live API to make the most of it
This commit is contained in:
Nazar Gargol 2020-08-13 21:04:57 +12:00
parent 78b4dff656
commit d2fbe327e4

View File

@ -205,7 +205,7 @@ const doImport = async ({membersBatch: members, allLabelModels, importSetLabels,
await deleteMemberKnex(stripeMember.id);
}
}, {
concurrency: 10
concurrency: 9
});
}