Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2023-10-12 15:11:32 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2023-10-12 15:11:32 +0300
commit3b260cb69f464d8dea681b747dcffdeebee348ff (patch)
treebcebf3e2fcae7b4c69822b9c9fcffae5f71ce078 /spec/features/admin
parent7b3a8386ceeeb87b6e7e2e5ac00365f0d063cbb8 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/features/admin')
-rw-r--r--spec/features/admin/admin_settings_spec.rb3
1 files changed, 3 insertions, 0 deletions
diff --git a/spec/features/admin/admin_settings_spec.rb b/spec/features/admin/admin_settings_spec.rb
index f372940a1e7..0f77a69f54b 100644
--- a/spec/features/admin/admin_settings_spec.rb
+++ b/spec/features/admin/admin_settings_spec.rb
@@ -730,6 +730,8 @@ RSpec.describe 'Admin updates settings', feature_category: :shared do
fill_in 'Maximum authenticated web requests per rate limit period per user', with: 700
fill_in 'Authenticated web rate limit period in seconds', with: 800
+ fill_in "Maximum authenticated requests to project/:id/jobs per minute", with: 1000
+
fill_in 'Plain-text response to send to clients that hit a rate limit', with: 'Custom message'
click_button 'Save changes'
@@ -750,6 +752,7 @@ RSpec.describe 'Admin updates settings', feature_category: :shared do
throttle_authenticated_web_enabled: true,
throttle_authenticated_web_requests_per_period: 700,
throttle_authenticated_web_period_in_seconds: 800,
+ project_jobs_api_rate_limit: 1000,
rate_limiting_response_text: 'Custom message'
)
end