From 55f309e998f3cab35d8a31dc11a55060c1547559 Mon Sep 17 00:00:00 2001 From: Sabir Hassan Date: Mon, 30 Jan 2023 23:50:40 +0500 Subject: [PATCH] chore: quick fix --- src/request/RequestClient.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/request/RequestClient.ts b/src/request/RequestClient.ts index 9ed6ce8..ef21871 100644 --- a/src/request/RequestClient.ts +++ b/src/request/RequestClient.ts @@ -692,7 +692,7 @@ const parseError = (data: string) => { if (parts.length > 1) { const storedProcessPath = parts[1].split('')[1].split('')[0] const message = storedProcessPath.endsWith('runner') - ? `SASJS runner not found. Here's the link (https://cli.sasjs.io/auth/#sasjs-runner) to sas code for registering sasjs runner` + ? `SASJS runner not found. Here's the link (https://cli.sasjs.io/auth/#sasjs-runner) to the SAS code for registering the SASjs runner` : `Stored process not found: ${storedProcessPath}` return new JobExecutionError(500, message, '') }