This is an automated email from the ASF dual-hosted git repository.

klesh pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-devlake.git


The following commit(s) were added to refs/heads/main by this push:
     new ffe965b69 fix: azure connection rate limit config error (#7331)
ffe965b69 is described below

commit ffe965b69a059ac3f3c3ce3f32b7478e126e8cb2
Author: 青湛 <[email protected]>
AuthorDate: Tue Apr 16 12:05:44 2024 +0800

    fix: azure connection rate limit config error (#7331)
---
 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 c2157a90b..cf3098751 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,
       },
     ],
   },

Reply via email to