Skip to content

Commit

Permalink
Fix kms listkeys http request to be async
Browse files Browse the repository at this point in the history
  • Loading branch information
oleiade committed Aug 2, 2023
1 parent 0f82657 commit 822415f
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion build/aws.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion build/aws.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion build/index.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion build/index.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion build/kms.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion build/kms.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/internal/kms.ts
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ export class KMSClient extends AWSClient {
{}
)

const res = await http.request(this.method, signedRequest.url, signedRequest.body, {
const res = await http.asyncRequest(this.method, signedRequest.url, signedRequest.body, {
headers: signedRequest.headers,
})
this._handle_error(KMSOperation.ListKeys, res)
Expand Down

0 comments on commit 822415f

Please sign in to comment.