From 04731e18e4fc2046b1e902c25bd6e3260a9408ba Mon Sep 17 00:00:00 2001 From: Stefano Lottini Date: Mon, 27 Oct 2025 10:34:28 +0100 Subject: [PATCH] Explicit ipv4 address for locally-running test Astra DB+hcd --- scripts/test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/test.ts b/scripts/test.ts index 0ed5f04c..2a06a8d1 100755 --- a/scripts/test.ts +++ b/scripts/test.ts @@ -90,7 +90,7 @@ const opts = new Args('test.ts') if (v) { opts.Environment = 'dse'; process.env.CLIENT_DB_TOKEN = 'Cassandra:Y2Fzc2FuZHJh:Y2Fzc2FuZHJh'; - process.env.CLIENT_DB_URL = 'http://localhost:8181'; + process.env.CLIENT_DB_URL = 'http://127.0.0.1:8181'; } } })