Skip to content

Commit

Permalink
Merge pull request #1610 from krka01/master
Browse files Browse the repository at this point in the history
Fix for issue 1600: Debug session does not start if the command default have been changed to MSGQ(*WRKSTN) for the SBMJOB command
  • Loading branch information
chrjorgensen authored Oct 24, 2023
2 parents 0e458f0 + c238b5f commit 8f9ca89
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
* [@BoykaZhu](https://github.com/BoykaZhu)
* [@krka01](https://github.com/krka01)
2 changes: 1 addition & 1 deletion src/api/debug/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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,
};
Expand Down

0 comments on commit 8f9ca89

Please sign in to comment.