update deployment quota after deploy
This commit is contained in:
parent
212a24348a
commit
3f4fa0674d
|
@ -46,8 +46,12 @@ async function getCurrentInstanceQuota(instanceId) {
|
||||||
})
|
})
|
||||||
)
|
)
|
||||||
const existingRecords = records.rows.length
|
const existingRecords = records.rows.length
|
||||||
|
|
||||||
|
const designDoc = await db.get("_design/database")
|
||||||
|
|
||||||
return {
|
return {
|
||||||
records: existingRecords,
|
records: existingRecords,
|
||||||
|
views: Object.keys(designDoc.views).length,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -88,7 +92,7 @@ exports.deployApp = async function(ctx) {
|
||||||
const deployedInstanceQuota = await getCurrentInstanceQuota(
|
const deployedInstanceQuota = await getCurrentInstanceQuota(
|
||||||
ctx.user.instanceId
|
ctx.user.instanceId
|
||||||
)
|
)
|
||||||
updateDeploymentQuota(deployedInstanceQuota)
|
await updateDeploymentQuota(deployedInstanceQuota)
|
||||||
|
|
||||||
ctx.body = {
|
ctx.body = {
|
||||||
status: "SUCCESS",
|
status: "SUCCESS",
|
||||||
|
|
Loading…
Reference in New Issue