mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-06 22:40:14 -05:00
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:
parent
78b4dff656
commit
d2fbe327e4
1 changed files with 1 additions and 1 deletions
|
@ -205,7 +205,7 @@ const doImport = async ({membersBatch: members, allLabelModels, importSetLabels,
|
|||
await deleteMemberKnex(stripeMember.id);
|
||||
}
|
||||
}, {
|
||||
concurrency: 10
|
||||
concurrency: 9
|
||||
});
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue