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 025123c commit 08eb024Copy full SHA for 08eb024
packages/core/src/codewhisperer/service/transformByQ/transformApiHandler.ts
@@ -132,9 +132,7 @@ export async function uploadArtifactToS3(
132
)
133
} catch (e: any) {
134
if (response && !retriableCodes.includes(response.status)) {
135
- throw new Error(
136
- `Upload failed with status code = ${response.status}; did not automatically retry; full error = ${JSON.stringify(e)}`
137
- )
+ throw new Error(`Upload failed with status code = ${response.status}; did not automatically retry`)
138
}
139
if (i !== 3) {
140
await sleep(1000 * Math.pow(2, i))
0 commit comments