File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
packages/core/src/submodules/httpAuthSchemes/aws_sdk Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -129,7 +129,7 @@ export const resolveAwsSdkSigV4Config = <T>(
129129 }
130130 }
131131
132- const boundCredentialsProvider = async ( ) => credentialsProvider ! ( { callerClientConfig : config } ) ;
132+ const boundCredentialsProvider = async ( params ) => credentialsProvider ! ( { ... params , callerClientConfig : config } ) ;
133133
134134 // Populate sigv4 arguments
135135 const {
@@ -225,8 +225,8 @@ export const resolveAwsSdkSigV4Config = <T>(
225225 systemClockOffset,
226226 signingEscapePath,
227227 credentials : isUserSupplied
228- ? async ( ) =>
229- boundCredentialsProvider ! ( ) . then ( ( creds : AttributedAwsCredentialIdentity ) =>
228+ ? async ( params ) =>
229+ boundCredentialsProvider ! ( params ) . then ( ( creds : AttributedAwsCredentialIdentity ) =>
230230 setCredentialFeature ( creds , "CREDENTIALS_CODE" , "e" )
231231 )
232232 : boundCredentialsProvider ! ,
You can’t perform that action at this time.
0 commit comments