Skip to content

Commit

Permalink
added responseType param to fix k6 behaviour (#38)
Browse files Browse the repository at this point in the history
Co-authored-by: giomella <[email protected]>
  • Loading branch information
gioelemella and giomella authored Aug 25, 2023
1 parent b415582 commit 749e693
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion performance-test/src/modules/pdf_engine_client.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ export function generatePDF(pdfEngineUri, subKey, zipFile, inputData, generateZi
'Ocp-Apim-Subscription-Key': subKey
};

return http.post(pdfEngineUri, form, {headers});
return http.post(pdfEngineUri, form, {headers, responseType: "text"});
}

0 comments on commit 749e693

Please sign in to comment.