From dc8a8181b430bd94c95474fcbae8aabc97d235bd Mon Sep 17 00:00:00 2001 From: einhornimmond Date: Wed, 26 Nov 2025 15:31:04 +0100 Subject: [PATCH] change default dlt connector url to localhost --- backend/src/config/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/src/config/index.ts b/backend/src/config/index.ts index 9a57fed43..ddad28582 100644 --- a/backend/src/config/index.ts +++ b/backend/src/config/index.ts @@ -42,7 +42,7 @@ const COMMUNITY_URL = process.env.COMMUNITY_URL ?? `${URL_PROTOCOL}://${COMMUNIT const DLT_CONNECTOR_PORT = process.env.DLT_CONNECTOR_PORT ?? 6010 const dltConnector = { - DLT_CONNECTOR_URL: process.env.DLT_CONNECTOR_URL ?? `${COMMUNITY_URL}:${DLT_CONNECTOR_PORT}`, + DLT_CONNECTOR_URL: process.env.DLT_CONNECTOR_URL ?? `http://localhost:${DLT_CONNECTOR_PORT}`, } const community = {