mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-23 10:53:34 +03:00
Fixed limits realoding during soft Ghost restart
refs https://github.com/TryGhost/Team/issues/599 - This is a precursor change to tests which verify the hostSettings limits are working correctly - Bumped limits-service version which allows for multiple calls of loadLimits on the same service instance
This commit is contained in:
parent
e5b13ee5d2
commit
edd0e26a78
@ -7,10 +7,6 @@ let limitService = new LimitService();
|
||||
const initFn = () => {
|
||||
let helpLink;
|
||||
|
||||
if (!config.get('hostSettings') || !config.get('hostSettings:limits')) {
|
||||
return;
|
||||
}
|
||||
|
||||
if (config.get('hostSettings:billing:enabled') && config.get('hostSettings:billing:enabled') === true && config.get('hostSettings:billing:url')) {
|
||||
helpLink = config.get('hostSettings:billing:url');
|
||||
} else {
|
||||
|
@ -56,7 +56,7 @@
|
||||
"@tryghost/kg-default-cards": "4.0.2",
|
||||
"@tryghost/kg-markdown-html-renderer": "4.0.1",
|
||||
"@tryghost/kg-mobiledoc-html-renderer": "4.0.0",
|
||||
"@tryghost/limit-service": "0.4.0",
|
||||
"@tryghost/limit-service": "0.4.1",
|
||||
"@tryghost/magic-link": "1.0.0",
|
||||
"@tryghost/members-api": "1.1.1",
|
||||
"@tryghost/members-csv": "1.0.0",
|
||||
|
@ -24,6 +24,7 @@ const frontendSettingsService = require('../../core/frontend/services/settings')
|
||||
const settingsCache = require('../../core/server/services/settings/cache');
|
||||
const web = require('../../core/server/web');
|
||||
const themes = require('../../core/frontend/services/themes');
|
||||
const limits = require('../../core/server/services/limits');
|
||||
|
||||
// Other Test Utilities
|
||||
const APIUtils = require('./api');
|
||||
@ -205,6 +206,9 @@ const restartModeGhostStart = async () => {
|
||||
|
||||
// Trigger themes to load again
|
||||
themes.loadInactiveThemes();
|
||||
|
||||
// Reload limits service
|
||||
limits.init();
|
||||
};
|
||||
|
||||
const bootGhost = async () => {
|
||||
|
@ -559,10 +559,10 @@
|
||||
dependencies:
|
||||
"@tryghost/kg-clean-basic-html" "^1.0.13"
|
||||
|
||||
"@tryghost/limit-service@0.4.0":
|
||||
version "0.4.0"
|
||||
resolved "https://registry.yarnpkg.com/@tryghost/limit-service/-/limit-service-0.4.0.tgz#a681eb866171a6966162db87ae0d18ccb1fbb965"
|
||||
integrity sha512-DVWYiKgvXzWqi+L2jJPhTQLogiRZUJw+bX9XMmLg202rnNAn8A9eYIAmWu5TbY4Gp0+6gz6IZFdIIocGDtA8Aw==
|
||||
"@tryghost/limit-service@0.4.1":
|
||||
version "0.4.1"
|
||||
resolved "https://registry.yarnpkg.com/@tryghost/limit-service/-/limit-service-0.4.1.tgz#c827e8a334854766f073520ae5dab12e132e0945"
|
||||
integrity sha512-MYcW+s4+OfA9C/tI7e0ZKhxUk02tVhkcrBc/7p+BgiJnS+LdcgrV21xRqH/UhERotgOLcFRTHPt6bkqW1Lnhwg==
|
||||
dependencies:
|
||||
lodash "^4.17.21"
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user