From c8b2f865bc35ff15a03bb86874b406069ae020df Mon Sep 17 00:00:00 2001 From: Bandini Bhopi Date: Tue, 5 Mar 2024 20:28:42 +0000 Subject: [PATCH] Update changelog and remove console log Signed-off-by: Bandini Bhopi --- CHANGELOG.md | 2 +- lib/aws/AwsSigv4Signer.js | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f654b13a0..1b3e3f336 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@ Inspired from [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) ## [Unreleased] ### Added -- Add child client support for AwsSigV4 ([#725](https://github.com/opensearch-project/opensearch-js/pull/725)) +- Inherit AwsSigV4 in .child ([#725](https://github.com/opensearch-project/opensearch-js/pull/725)) ### Dependencies - Bumps `prettier` from 3.1.1 to 3.2.5 - Bumps `@aws-sdk/types` from 3.485.0 to 3.523.0 diff --git a/lib/aws/AwsSigv4Signer.js b/lib/aws/AwsSigv4Signer.js index 6c2c40573..8e6ae8e33 100644 --- a/lib/aws/AwsSigv4Signer.js +++ b/lib/aws/AwsSigv4Signer.js @@ -87,7 +87,6 @@ function AwsSigv4Signer(opts = {}) { secretAccessKey: awssigv4Cred.credentials.secretAccessKey, sessionToken: awssigv4Cred.credentials.sessionToken, }; - console.log(`credentialsState.credentials = ${JSON.stringify(credentialsState.credentials)}`); request.region = awssigv4Cred.region; request.service = awssigv4Cred.service; delete request['auth'];