feat(sj_1.0.0_beta2): 调整定时任务的超时最大时间、最大超时次数、最大重试间隔
This commit is contained in:
parent
594d0adaf7
commit
ebfc3c9a72
@ -356,7 +356,7 @@ watch(visible, () => {
|
||||
<NInputNumber
|
||||
v-model:value="model.executorTimeout"
|
||||
:min="1"
|
||||
:max="60"
|
||||
:max="99999999"
|
||||
:placeholder="$t('page.jobTask.form.executorTimeout')"
|
||||
clearable
|
||||
/>
|
||||
@ -365,7 +365,7 @@ watch(visible, () => {
|
||||
<NInputNumber
|
||||
v-model:value="model.maxRetryTimes"
|
||||
:min="1"
|
||||
:max="60"
|
||||
:max="999"
|
||||
:placeholder="$t('page.jobTask.form.maxRetryTimes')"
|
||||
clearable
|
||||
/>
|
||||
@ -374,7 +374,7 @@ watch(visible, () => {
|
||||
<NInputNumber
|
||||
v-model:value="model.retryInterval"
|
||||
:min="1"
|
||||
:max="60"
|
||||
:max="99999999"
|
||||
:placeholder="$t('page.jobTask.form.retryInterval')"
|
||||
clearable
|
||||
/>
|
||||
@ -383,7 +383,7 @@ watch(visible, () => {
|
||||
<NInputNumber
|
||||
v-model:value="model.parallelNum"
|
||||
:min="1"
|
||||
:max="60"
|
||||
:max="999"
|
||||
:placeholder="$t('page.jobTask.form.parallelNum')"
|
||||
clearable
|
||||
/>
|
||||
|
Loading…
Reference in New Issue
Block a user