Fixing build issue.
This commit is contained in:
parent
0ba185a487
commit
bd9e05d7fa
|
@ -15,7 +15,7 @@ import {
|
||||||
} from "../../db/utils"
|
} from "../../db/utils"
|
||||||
import { createLogByAutomationView } from "../../db/views/staticViews"
|
import { createLogByAutomationView } from "../../db/views/staticViews"
|
||||||
import { Automation, MetadataErrors } from "../../definitions/common"
|
import { Automation, MetadataErrors } from "../../definitions/common"
|
||||||
import { invalidateAppMetadata } from "@budibase/backend-core/cache"
|
import { app } from "@budibase/backend-core/cache"
|
||||||
import { backOff } from "../../utilities"
|
import { backOff } from "../../utilities"
|
||||||
import * as env from "../../environment"
|
import * as env from "../../environment"
|
||||||
|
|
||||||
|
@ -174,7 +174,7 @@ async function updateAppMetadataWithErrors(
|
||||||
}
|
}
|
||||||
await db.put(metadata)
|
await db.put(metadata)
|
||||||
// don't update cache until after DB put, make sure it has been stored successfully
|
// don't update cache until after DB put, make sure it has been stored successfully
|
||||||
await invalidateAppMetadata(metadata.appId, metadata)
|
await app.invalidateAppMetadata(metadata.appId, metadata)
|
||||||
}, "Failed to update app metadata with automation log error")
|
}, "Failed to update app metadata with automation log error")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue