1
0
Fork 0
mirror of synced 2024-09-28 23:31:43 +12:00

additional logging around component definitions

This commit is contained in:
Martin McKeaveney 2022-08-25 10:57:30 +01:00
parent 73ca9334ff
commit 07b6516991
2 changed files with 27 additions and 22 deletions

View file

@ -3,6 +3,7 @@ const { getComponentLibraryManifest } = require("../../utilities/fileSystem")
const { getAppDB } = require("@budibase/backend-core/context")
exports.fetchAppComponentDefinitions = async function (ctx) {
try {
const db = getAppDB()
const app = await db.get(DocumentType.APP_METADATA)
@ -31,4 +32,7 @@ exports.fetchAppComponentDefinitions = async function (ctx) {
}
}
ctx.body = definitions
} catch (err) {
console.error(`component-definitions=failed`, err)
}
}

View file

@ -291,6 +291,7 @@ exports.getComponentLibraryManifest = async library => {
const path = join(appId, filename)
resp = await retrieve(ObjectStoreBuckets.APPS, path)
} catch (error) {
console.error(`component-manifest-objectstore=failed appId=${appId}`, error)
// Fallback to loading it from the old location for old apps
const path = join(appId, "node_modules", library, "package", filename)
resp = await retrieve(ObjectStoreBuckets.APPS, path)