Skip to content

Commit 4627b35

Browse files
author
Uros Marolt
authored
Bugfix - added missing await (#1823)
1 parent 2973105 commit 4627b35

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

services/apps/automations_worker/src/services/automation.service.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -284,7 +284,7 @@ export class AutomationService {
284284
}
285285

286286
try {
287-
executeMethod.bind(this)(automation, eventId, payload)
287+
await executeMethod.bind(this)(automation, eventId, payload)
288288
await this.automationRepo.createExecution({
289289
automationId: automation.id,
290290
type: automation.type,

0 commit comments

Comments
 (0)