diff --git a/src/utils/parseViyaDebugResponse.ts b/src/utils/parseViyaDebugResponse.ts index b0227f2..d3d3e6e 100644 --- a/src/utils/parseViyaDebugResponse.ts +++ b/src/utils/parseViyaDebugResponse.ts @@ -25,6 +25,6 @@ export const parseSasViyaDebugResponse = async ( } return requestClient - .get(serverUrl + jsonUrl, undefined) + .get(serverUrl + jsonUrl, undefined, 'text/plain') .then((res: any) => getValidJson(res.result)) }