1
0
mirror of https://github.com/sasjs/adapter.git synced 2026-06-10 02:50:20 +00:00

fix(debug): send _debug=128 via URL for runAsTask debug, drop _omittextlog

This commit is contained in:
mulahasanovic
2026-05-14 10:45:40 +02:00
parent ac0dfae9a8
commit ea5d60352d
2 changed files with 34 additions and 7 deletions
+1 -7
View File
@@ -55,13 +55,7 @@ export abstract class BaseJobExecutor implements JobExecutor {
if (config.debug) {
requestParams['_omittextlog'] = 'false'
requestParams['_omitSessionResults'] = 'false'
requestParams['_debug'] =
config.useComputeApi === null &&
config.serverType === ServerType.SasViya &&
config.runAsTask === true
? 128
: 131
requestParams['_debug'] = 131
}
return requestParams