We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 033f953 commit a2ac4a3Copy full SHA for a2ac4a3
clients/node/client-rds-data-node/protocol/AwsRestJson1_1.ts
@@ -95,7 +95,7 @@ export async function executeStatementAwsRestJson1_1Deserialize(
95
async function executeStatementAwsRestJson1_1DeserializeError(
96
output: HttpResponse
97
): Promise<ExecuteStatementResponse> {
98
- let data = await parseBody(output);
+ let data = await parseBody(output.body);
99
if (output.statusCode === 400 && data.dbConnectionId !== undefined) {
100
return Promise.reject({
101
__type: "com.amazon.rdsdataservice#StatementTimeoutException",
0 commit comments