Skip to content

Commit 425a939

Browse files
committed
Address PR feedback
Signed-off-by: Timothy Johnson <[email protected]>
1 parent 7568032 commit 425a939

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

packages/zowe-explorer-api/src/profiles/ZoweExplorerZosmfApi.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -465,7 +465,8 @@ import { IDataSetCount } from "../dataset/IDataSetCount";
465465
// Make single API call to submit if job encoding is not specified
466466
return zosjobs.SubmitJobs.submitJob(this.getSession(), jobDataSet);
467467
} else {
468-
// Download JCL with encoding (not jobEncoding) and submit as text
468+
// Download JCL with `encoding` to perform codepage conversion with z/OSMF.
469+
// Then submit as text with `jobEncoding` which is passed to JES reader.
469470
const rawJcl = await zosfiles.Get.dataSet(this.getSession(), jobDataSet, { encoding: this.profile?.profile?.encoding });
470471
return this.submitJcl(rawJcl.toString());
471472
}

0 commit comments

Comments
 (0)