1
0
Fork 0
mirror of synced 2024-06-22 16:10:40 +12:00

Disable automation chaining in cloud

This commit is contained in:
Rory Powell 2022-08-23 12:35:53 +01:00
parent 7ba8bf18a5
commit c104a15122
3 changed files with 4 additions and 5 deletions

View file

@ -35,9 +35,8 @@ export async function patch(ctx: any): Promise<any> {
pickApi(tableId).patch(ctx)
)
ctx.status = 200
if (!ctx.disableEmit && ctx.eventEmitter) {
ctx.eventEmitter &&
ctx.eventEmitter.emitRow(`row:update`, appId, row, table)
}
ctx.message = `${table.name} updated successfully.`
ctx.body = row
} catch (err) {

View file

@ -1,7 +1,6 @@
const rowController = require("../../api/controllers/row")
const automationUtils = require("../automationUtils")
const { buildCtx } = require("./utils")
const env = require("../../environment")
exports.definition = {
name: "Update Row",
@ -84,7 +83,6 @@ exports.run = async function ({ inputs, appId, emitter }) {
rowId: inputs.rowId,
tableId: tableId,
},
disableEmit: !env.SELF_HOSTED,
})
try {

View file

@ -1,8 +1,10 @@
const { rowEmission, tableEmission } = require("./utils")
const mainEmitter = require("./index")
const env = require("../environment")
// max number of automations that can chain on top of each other
const MAX_AUTOMATION_CHAIN = 5
// TODO: in future make this configurable at the automation level
const MAX_AUTOMATION_CHAIN = env.SELF_HOSTED ? 5 : 0
/**
* Special emitter which takes the count of automation runs which have occurred and blocks an