Skip to content

Commit

Permalink
update default batch size to 499
Browse files Browse the repository at this point in the history
  • Loading branch information
AboMoutaz authored Aug 13, 2024
1 parent 051a1e0 commit 6049bba
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ghost/core/core/shared/config/defaults.json
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@
"minDaysSinceLastEmail": 14
},
"bulkEmail": {
"batchSize": 1000
"batchSize": 499
},
"disableJSBackups": false
}
2 changes: 1 addition & 1 deletion ghost/postmark-client/lib/PostmarkClient.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ module.exports = class PostmarkClient {
#config;
#settings;

static DEFAULT_BATCH_SIZE = 500;
static DEFAULT_BATCH_SIZE = 499;

constructor({config, settings}) {
this.#config = config;
Expand Down

0 comments on commit 6049bba

Please sign in to comment.