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

fix: executeJobViaWeb retry requests missing params

This commit is contained in:
Mihajlo Medjedovic
2020-09-08 15:48:08 +02:00
parent 1f970e1102
commit d5791a75cd

View File

@@ -855,7 +855,7 @@ export default class SASjs {
) {
if (this.retryCountWeb < requestRetryLimit) {
this.retryCountWeb++
this.request(sasJob, data).then(
this.request(sasJob, data, config, loginRequiredCallback).then(
(res: any) => resolve(res),
(err: any) => reject(err)
)