1
0
Fork 0
mirror of synced 2024-06-28 02:50:50 +12:00

Adding a migration for the plugin quotas to make sure they are always accurate in self host at startup.

This commit is contained in:
mike12345567 2022-09-24 12:10:09 +01:00
parent b9154fe096
commit b20db4d22a
4 changed files with 31 additions and 0 deletions

View file

@ -33,4 +33,8 @@ export const DEFINITIONS: MigrationDefinition[] = [
type: MigrationType.GLOBAL,
name: MigrationName.GLOBAL_INFO_SYNC_USERS,
},
{
type: MigrationType.GLOBAL,
name: MigrationName.PLUGIN_COUNT,
},
]

View file

@ -0,0 +1,17 @@
import { tenancy, logging } from "@budibase/backend-core"
import { plugins } from "@budibase/pro"
import env from "../../environment"
export const run = async () => {
// only a self hosted op
if (!env.SELF_HOSTED) {
return
}
try {
await tenancy.doInTenant(tenancy.DEFAULT_TENANT_ID, async () => {
await plugins.checkPluginQuotas()
})
} catch (err) {
logging.logAlert("Failed to update plugin quotas", err)
}
}

View file

@ -7,6 +7,7 @@ import * as userEmailViewCasing from "./functions/userEmailViewCasing"
import * as quota1 from "./functions/quotas1"
import * as appUrls from "./functions/appUrls"
import * as backfill from "./functions/backfill"
import * as pluginCount from "./functions/pluginCount"
/**
* Populate the migration function and additional configuration from
@ -68,6 +69,14 @@ export const buildMigrations = () => {
})
break
}
case MigrationName.PLUGIN_COUNT: {
serverMigrations.push({
...definition,
fn: pluginCount.run,
silent: !!env.SELF_HOSTED,
preventRetry: false,
})
}
}
}

View file

@ -46,6 +46,7 @@ export enum MigrationName {
EVENT_INSTALLATION_BACKFILL = "event_installation_backfill",
GLOBAL_INFO_SYNC_USERS = "global_info_sync_users",
PLATFORM_USERS_EMAIL_CASING = "platform_users_email_casing",
PLUGIN_COUNT = "plugin_count",
}
export interface MigrationDefinition {