mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-06 22:40:14 -05:00
Fixed update check due to tiers service changes (#16832)
refs https://github.com/TryGhost/Team/issues/3234 The update check was failing to run due to recent changes in the tiers service. This service now needs initialising before the update check can be run.
This commit is contained in:
parent
ca46308abe
commit
19f3700ae8
1 changed files with 3 additions and 0 deletions
|
@ -40,6 +40,9 @@ if (parentPort) {
|
|||
|
||||
const settings = require('./services/settings/settings-service');
|
||||
await settings.init();
|
||||
|
||||
const tiers = require('./services/tiers');
|
||||
await tiers.init();
|
||||
// Finished INIT
|
||||
|
||||
await updateCheck({
|
||||
|
|
Loading…
Reference in a new issue