fix: 统一端点默认重试次数为 2

同步前端表单、mock 数据和后端导入配置中端点的默认重试次数
This commit is contained in:
fawney19
2026-01-08 01:40:40 +08:00
parent 68ff828505
commit 238788e0e9
3 changed files with 8 additions and 8 deletions

View File

@@ -296,7 +296,7 @@ const form = ref({
base_url: '',
custom_path: '',
timeout: 300,
max_retries: 3,
max_retries: 2,
max_concurrent: undefined as number | undefined,
rate_limit: undefined as number | undefined,
is_active: true,
@@ -392,7 +392,7 @@ function resetForm() {
base_url: '',
custom_path: '',
timeout: 300,
max_retries: 3,
max_retries: 2,
max_concurrent: undefined,
rate_limit: undefined,
is_active: true,