mirror of
https://github.com/fjogeleit/http-request-action.git
synced 2024-11-22 03:41:00 -05:00
fix retryWait mapping
Signed-off-by: Frank Jogeleit <frank.jogeleit@lovoo.com>
This commit is contained in:
parent
74e0e96181
commit
8537e58734
2 changed files with 2 additions and 2 deletions
2
dist/index.js
vendored
2
dist/index.js
vendored
|
@ -34017,7 +34017,7 @@ if (!!core.getInput('retry')) {
|
||||||
|
|
||||||
let retryWait = 3000
|
let retryWait = 3000
|
||||||
if (!!core.getInput('retryWait')) {
|
if (!!core.getInput('retryWait')) {
|
||||||
retry = parseInt(core.getInput('retryWait'))
|
retryWait = parseInt(core.getInput('retryWait'))
|
||||||
}
|
}
|
||||||
|
|
||||||
const data = core.getInput('data') || '{}';
|
const data = core.getInput('data') || '{}';
|
||||||
|
|
|
@ -58,7 +58,7 @@ if (!!core.getInput('retry')) {
|
||||||
|
|
||||||
let retryWait = 3000
|
let retryWait = 3000
|
||||||
if (!!core.getInput('retryWait')) {
|
if (!!core.getInput('retryWait')) {
|
||||||
retry = parseInt(core.getInput('retryWait'))
|
retryWait = parseInt(core.getInput('retryWait'))
|
||||||
}
|
}
|
||||||
|
|
||||||
const data = core.getInput('data') || '{}';
|
const data = core.getInput('data') || '{}';
|
||||||
|
|
Loading…
Reference in a new issue