fix: await page render to finish before resolving
This commit is contained in:
parent
e3943439e5
commit
830ddd9d2c
2
.gitignore
vendored
2
.gitignore
vendored
@ -17,6 +17,8 @@ npm-debug.log*
|
||||
|
||||
# Generated assets
|
||||
/assets
|
||||
server/views/master.pug
|
||||
server/views/setup.pug
|
||||
|
||||
# Webpack
|
||||
.webpack-cache
|
||||
|
@ -13,6 +13,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
|
||||
- Fixed root admin refresh token fail
|
||||
- Fixed error page metadata title warning
|
||||
- Fixed telemetry
|
||||
- Await page render job to complete before resolving
|
||||
|
||||
### Changed
|
||||
- Moved Insert Media button in Markdown editor
|
||||
|
@ -65,7 +65,7 @@ Wiki.js can run on virtually all platforms where Node.js can (Windows, Mac, Linu
|
||||
- MariaDB **10.2.7** or later
|
||||
- Microsoft SQL Server **2012** or later
|
||||
- SQLite **3.9** or later
|
||||
- Redis **3.2** or later
|
||||
- Redis **3.0** or later
|
||||
|
||||
> Read the full [prerequisites](https://docs-beta.requarks.io/install/requirements) article for full details.
|
||||
|
||||
|
@ -197,13 +197,14 @@ module.exports = class Page extends Model {
|
||||
|
||||
static async renderPage(page) {
|
||||
const pipeline = await WIKI.models.renderers.getRenderingPipeline(page.contentType)
|
||||
WIKI.queue.job.renderPage.add({
|
||||
const renderJob = await WIKI.queue.job.renderPage.add({
|
||||
page,
|
||||
pipeline
|
||||
}, {
|
||||
removeOnComplete: true,
|
||||
removeOnFail: true
|
||||
})
|
||||
return renderJob.finished()
|
||||
}
|
||||
|
||||
static async getPage(opts) {
|
||||
|
@ -5,7 +5,6 @@ author: requarks.io
|
||||
logo: https://static.requarks.io/logo/local-fs.svg
|
||||
website: https://wiki.js.org
|
||||
supportedModes:
|
||||
- sync
|
||||
- push
|
||||
props:
|
||||
path:
|
||||
|
@ -4,6 +4,10 @@ description: Git is a version control system for tracking changes in computer fi
|
||||
author: requarks.io
|
||||
logo: https://static.requarks.io/logo/git-alt.svg
|
||||
website: https://git-scm.com/
|
||||
supportedModes:
|
||||
- sync
|
||||
- push
|
||||
- pull
|
||||
props:
|
||||
authType:
|
||||
type: String
|
||||
|
Loading…
Reference in New Issue
Block a user