From a615da8f5ecb9c478d1aa29c39c3ef114d4fa956 Mon Sep 17 00:00:00 2001 From: Tokesh Date: Mon, 8 Jul 2024 20:45:14 +0500 Subject: [PATCH] deleting local parameters for testing Signed-off-by: Tokesh --- .env | 3 --- tools/src/OpenSearchHttpClient.ts | 2 +- 2 files changed, 1 insertion(+), 4 deletions(-) delete mode 100644 .env diff --git a/.env b/.env deleted file mode 100644 index bc54e8d67..000000000 --- a/.env +++ /dev/null @@ -1,3 +0,0 @@ -OPENSEARCH_URL=http://localhost:9201 -OPENSEARCH_USERNAME=admin -OPENSEARCH_PASSWORD=Counter2727! \ No newline at end of file diff --git a/tools/src/OpenSearchHttpClient.ts b/tools/src/OpenSearchHttpClient.ts index 605cbe639..7ffcb1421 100644 --- a/tools/src/OpenSearchHttpClient.ts +++ b/tools/src/OpenSearchHttpClient.ts @@ -12,7 +12,7 @@ import axios, { type AxiosInstance, type AxiosRequestConfig, type AxiosResponse, import * as https from 'node:https' import { sleep } from './helpers' -const DEFAULT_URL = 'http://localhost:9201' +const DEFAULT_URL = 'https://localhost:9200' const DEFAULT_USER = 'admin' const DEFAULT_INSECURE = false