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 b9a3621 commit 282c5d8Copy full SHA for 282c5d8
packages/bundler-plugin-core/src/utils/getPreSignedURL.ts
@@ -95,15 +95,16 @@ export const getPreSignedURL = async ({
95
96
let response: Response;
97
try {
98
- debug(`Request body: ${JSON.stringify(preProcessBody(requestBody))}`);
+ const body = preProcessBody(requestBody);
99
+ debug(`Request body: ${JSON.stringify(body)}`);
100
response = await fetchWithRetry({
101
retryCount,
102
url: `${apiUrl}${API_ENDPOINT}`,
103
name: "`get-pre-signed-url`",
104
requestData: {
105
method: "POST",
106
headers: headers,
- body: JSON.stringify(preProcessBody(requestBody)),
107
+ body: JSON.stringify(body),
108
},
109
});
110
} catch (e) {
0 commit comments