1
0
mirror of https://github.com/sasjs/adapter.git synced 2026-01-11 06:10:05 +00:00

chore: address PR comments

This commit is contained in:
Yury Shkoda
2021-10-27 11:15:28 +03:00
parent 0321f77451
commit 519494718b
2 changed files with 1 additions and 6 deletions

View File

@@ -33,7 +33,6 @@ import { LoginOptions, LoginResult } from './types/Login'
const defaultConfig: SASjsConfig = {
serverUrl: '',
pathSASjs: '',
pathSAS9: '/SASStoredProcess/do',
pathSASViya: '/SASJobExecution',
appLoc: '/Public/seedapp',
@@ -831,10 +830,7 @@ export default class SASjs {
}
public async deployToSASjs(members: [FolderMember, ServiceMember]) {
return await this.SASjsApiClient?.deploy(
members,
this.sasjsConfig.appLoc
)
return await this.SASjsApiClient?.deploy(members, this.sasjsConfig.appLoc)
}
public async executeJobSASjs(query: ExecutionQuery) {