From c238b5fb549ad9460130bbabf87a578b141a7ccc Mon Sep 17 00:00:00 2001 From: krkarlss Date: Tue, 24 Oct 2023 12:03:17 +0200 Subject: [PATCH] Submit debug job using MSGQ(*USRPRF) --- CONTRIBUTING.md | 3 ++- src/api/debug/index.ts | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 6fab07376..8d8aae874 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -50,4 +50,5 @@ Thanks so much to everyone [who has contributed](https://github.com/codefori/vsc * [@edmundreinhardt](https://github.com/edmundreinhardt) * [@richardm90](https://github.com/richardm90) * [@ThePrez](https://github.com/ThePrez) -* [@BoykaZhu](https://github.com/BoykaZhu) \ No newline at end of file +* [@BoykaZhu](https://github.com/BoykaZhu) +* [@krka01](https://github.com/krka01) \ No newline at end of file diff --git a/src/api/debug/index.ts b/src/api/debug/index.ts index e53cef7a8..5141c5abc 100644 --- a/src/api/debug/index.ts +++ b/src/api/debug/index.ts @@ -429,7 +429,7 @@ export async function startDebug(instance: Instance, options: DebugOptions) { "ignoreCertificateErrors": !secure, "library": options.library.toUpperCase(), "program": options.object.toUpperCase(), - "startBatchJobCommand": `SBMJOB CMD(${currentCommand}) INLLIBL(${config?.libraryList.join(` `)}) CURLIB(${config?.currentLibrary}) JOBQ(QSYSNOMAX)`, + "startBatchJobCommand": `SBMJOB CMD(${currentCommand}) INLLIBL(${config?.libraryList.join(` `)}) CURLIB(${config?.currentLibrary}) JOBQ(QSYSNOMAX) MSGQ(*USRPRF)`, "updateProductionFiles": updateProductionFiles, "trace": enableDebugTracing, };