From f41b6013cfc7a9681f90a6ccdf55184ff6ef2345 Mon Sep 17 00:00:00 2001 From: mintsweet <0x1304570@gmail.com> Date: Tue, 16 Apr 2024 10:10:51 +0800 Subject: [PATCH] fix: azure connection rate limit config error --- config-ui/src/plugins/register/azure/config.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config-ui/src/plugins/register/azure/config.tsx b/config-ui/src/plugins/register/azure/config.tsx index c2157a90b1a..cf309875112 100644 --- a/config-ui/src/plugins/register/azure/config.tsx +++ b/config-ui/src/plugins/register/azure/config.tsx @@ -50,7 +50,7 @@ export const AzureConfig: IPluginConfig = { 'By default, DevLake uses 18,000 requests/hour for data collection for Azure DevOps. But you can adjust the collection speed by setting up your desirable rate limit.', learnMore: DOC_URL.PLUGIN.AZUREDEVOPS.RATE_LIMIT, externalInfo: 'Azure DevOps does not specify a maximum value of rate limit.', - maximum: 18000, + defaultValue: 18000, }, ], }, @@ -102,7 +102,7 @@ export const AzureGoConfig: IPluginConfig = { 'By default, DevLake uses 18,000 requests/hour for data collection for Azure DevOps. But you can adjust the collection speed by setting up your desirable rate limit.', learnMore: DOC_URL.PLUGIN.AZUREDEVOPS.RATE_LIMIT, externalInfo: 'Azure DevOps does not specify a maximum value of rate limit.', - maximum: 18000, + defaultValue: 18000, }, ], },