mirror of
https://github.com/sasjs/adapter.git
synced 2026-01-10 22:00:05 +00:00
feat(session-manager): Manage a pool of sessions for job execution
This commit is contained in:
@@ -448,7 +448,11 @@ export default class SASjs {
|
||||
appLoc = this.sasjsConfig.appLoc;
|
||||
}
|
||||
if (this.sasjsConfig.serverType === ServerType.SASViya) {
|
||||
sasApiClient = new SASViyaApiClient(serverUrl, appLoc);
|
||||
sasApiClient = new SASViyaApiClient(
|
||||
serverUrl,
|
||||
appLoc,
|
||||
this.sasjsConfig.contextName
|
||||
);
|
||||
} else if (this.sasjsConfig.serverType === ServerType.SAS9) {
|
||||
sasApiClient = new SAS9ApiClient(serverUrl);
|
||||
}
|
||||
@@ -1066,7 +1070,8 @@ export default class SASjs {
|
||||
else
|
||||
this.sasViyaApiClient = new SASViyaApiClient(
|
||||
this.sasjsConfig.serverUrl,
|
||||
this.sasjsConfig.appLoc
|
||||
this.sasjsConfig.appLoc,
|
||||
this.sasjsConfig.contextName
|
||||
);
|
||||
}
|
||||
if (this.sasjsConfig.serverType === ServerType.SAS9) {
|
||||
|
||||
Reference in New Issue
Block a user