From 9548e60d2f7420288627225782582803a9b7b8a9 Mon Sep 17 00:00:00 2001 From: koehr Date: Tue, 9 Jan 2024 00:58:51 +0100 Subject: [PATCH] damn, I need to introduce a .env file --- analyser/metrics.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/analyser/metrics.ts b/analyser/metrics.ts index 1ae2c879..e10c7380 100644 --- a/analyser/metrics.ts +++ b/analyser/metrics.ts @@ -1,9 +1,9 @@ import { retryFetch } from "./toolkit.ts"; -//const STATUS_URL = "http://ylt:8383/api/runs/"; -//const RESULT_URL = "http://ylt:8383/api/results/"; -const STATUS_URL = "http://localhost:8383/api/runs/"; -const RESULT_URL = "http://localhost:8383/api/results/"; +const STATUS_URL = "http://ylt:8383/api/runs/"; +const RESULT_URL = "http://ylt:8383/api/results/"; +//const STATUS_URL = "http://localhost:8383/api/runs/"; +//const RESULT_URL = "http://localhost:8383/api/results/"; const METRIC_DEFAULTS = { device: "desktop", waitForResponse: false,