From d284e1d2fd46dcf9b6e18f652eae58e9ad2c8095 Mon Sep 17 00:00:00 2001 From: Ben White Date: Thu, 5 Sep 2024 13:54:35 +0200 Subject: [PATCH] Fixes --- bin/migrate | 3 +++ plugin-server/src/cdp/fetch-executor.ts | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/bin/migrate b/bin/migrate index bc7608fa7b4c8..bce5e525182dc 100755 --- a/bin/migrate +++ b/bin/migrate @@ -2,6 +2,9 @@ set -e SCRIPT_DIR=$(dirname "$(readlink -f "$0")") +ls $SCRIPT_DIR +ls $SCRIPT_DIR/../rust +ls $SCRIPT_DIR/../rust/bin bash $SCRIPT_DIR/../rust/bin/migrate-cyclotron python manage.py migrate diff --git a/plugin-server/src/cdp/fetch-executor.ts b/plugin-server/src/cdp/fetch-executor.ts index e9fa2a4ffbb8c..8907fafc35239 100644 --- a/plugin-server/src/cdp/fetch-executor.ts +++ b/plugin-server/src/cdp/fetch-executor.ts @@ -40,7 +40,7 @@ export class FetchExecutor { async execute(invocation: HogFunctionInvocation): Promise { if (invocation.queue !== 'fetch' || !invocation.queueParameters) { - // throw new Error('Bad invocation') + status.error('🦔', `[HogExecutor] Bad invocation`, { invocation }) return }