1
0
mirror of https://github.com/sasjs/adapter.git synced 2026-01-07 04:20:05 +00:00

chore(pid): made printing PID optional

This commit is contained in:
Yury Shkoda
2020-12-23 09:17:40 +03:00
parent 16e21adb20
commit 2e66bfde4b
2 changed files with 29 additions and 22 deletions

View File

@@ -730,7 +730,8 @@ export default class SASjs {
config: any = {},
accessToken?: string,
waitForResult?: boolean,
pollOptions?: PollOptions
pollOptions?: PollOptions,
printPid = false
) {
config = {
...this.sasjsConfig,
@@ -752,7 +753,8 @@ export default class SASjs {
accessToken,
!!waitForResult,
false,
pollOptions
pollOptions,
printPid
)
}