Skip to content

Commit 7d436c1

Browse files
committed
fix(webhooks): execute non-polling webhooks inline when BullMQ is disabled
1 parent 4363ddb commit 7d436c1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

apps/sim/lib/webhooks/processor.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1325,7 +1325,7 @@ export async function queueWebhookExecution(
13251325
`[${options.requestId}] Queued ${foundWebhook.provider} webhook execution ${jobId} via inline backend`
13261326
)
13271327

1328-
if (shouldExecuteInline()) {
1328+
if (!isBullMQEnabled()) {
13291329
void (async () => {
13301330
try {
13311331
await jobQueue.startJob(jobId)

0 commit comments

Comments
 (0)