Skip to content

Commit 1ccf38e

Browse files
committed
Return a 404 so the webhook provider doesn’t retry
1 parent 29b773c commit 1ccf38e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/webapp/app/services/sources/handleHttpSource.server.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ export class HandleHttpSourceService {
3636
logger.debug("HandleHttpSourceService: Runs are disabled for this organization", {
3737
organizationId: triggerSource.organization.id,
3838
});
39-
return;
39+
return { status: 404 };
4040
}
4141

4242
if (!triggerSource.interactive) {

0 commit comments

Comments
 (0)