From a34528031e3d0ec34e02326398776c86e8d53972 Mon Sep 17 00:00:00 2001 From: marknguyen1302 Date: Thu, 1 Aug 2024 17:00:22 +0700 Subject: [PATCH] fix: change default host cortex --- cortex-js/src/infrastructure/constants/cortex.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cortex-js/src/infrastructure/constants/cortex.ts b/cortex-js/src/infrastructure/constants/cortex.ts index bfb3a1551..04d80634c 100644 --- a/cortex-js/src/infrastructure/constants/cortex.ts +++ b/cortex-js/src/infrastructure/constants/cortex.ts @@ -4,7 +4,7 @@ export const databaseName = 'cortex'; export const databaseFile = `${databaseName}.db`; -export const defaultCortexJsHost = 'localhost'; +export const defaultCortexJsHost = '127.0.0.1'; export const defaultCortexJsPort = 1337; export const defaultCortexCppHost = '127.0.0.1';