Adding a check to see if app backups feature is enabled.
This commit is contained in:
parent
5340b49d6b
commit
bc2d499625
|
@ -110,6 +110,8 @@ async function deployApp(deployment: any, userId: string) {
|
|||
|
||||
// can't do this in test
|
||||
if (!env.isTest()) {
|
||||
// don't try this if feature isn't allowed, will error
|
||||
if (!(await backups.isEnabled())) {
|
||||
// trigger backup initially
|
||||
await backups.triggerAppBackup(
|
||||
productionAppId,
|
||||
|
@ -119,6 +121,7 @@ async function deployApp(deployment: any, userId: string) {
|
|||
}
|
||||
)
|
||||
}
|
||||
}
|
||||
|
||||
const config: any = {
|
||||
source: devAppId,
|
||||
|
|
Loading…
Reference in New Issue