Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
80fb055b
Commit
80fb055b
authored
Sep 28, 2021
by
Sanad Liaquat
Committed by
Ramya Authappan
Sep 28, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Handle HTTP 429 status gracefully
parent
54cb7317
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
72 additions
and
42 deletions
+72
-42
qa/qa/support/api.rb
qa/qa/support/api.rb
+72
-42
No files found.
qa/qa/support/api.rb
View file @
80fb055b
...
...
@@ -8,63 +8,93 @@ module QA
HTTP_STATUS_NO_CONTENT
=
204
HTTP_STATUS_ACCEPTED
=
202
HTTP_STATUS_NOT_FOUND
=
404
HTTP_STATUS_TOO_MANY_REQUESTS
=
429
HTTP_STATUS_SERVER_ERROR
=
500
def
post
(
url
,
payload
,
args
=
{})
default_args
=
{
method: :post
,
url:
url
,
payload:
payload
,
verify_ssl:
false
}
RestClient
::
Request
.
execute
(
default_args
.
merge
(
args
)
)
rescue
RestClient
::
ExceptionWithResponse
=>
e
return_response_or_raise
(
e
)
with_retry_on_too_many_requests
do
default_args
=
{
method: :post
,
url:
url
,
payload:
payload
,
verify_ssl:
false
}
RestClient
::
Request
.
execute
(
default_args
.
merge
(
args
)
)
rescue
RestClient
::
ExceptionWithResponse
=>
e
return_response_or_raise
(
e
)
end
end
def
get
(
url
,
args
=
{})
default_args
=
{
method: :get
,
url:
url
,
verify_ssl:
false
}
RestClient
::
Request
.
execute
(
default_args
.
merge
(
args
)
)
rescue
RestClient
::
ExceptionWithResponse
=>
e
return_response_or_raise
(
e
)
with_retry_on_too_many_requests
do
default_args
=
{
method: :get
,
url:
url
,
verify_ssl:
false
}
RestClient
::
Request
.
execute
(
default_args
.
merge
(
args
)
)
rescue
RestClient
::
ExceptionWithResponse
=>
e
return_response_or_raise
(
e
)
end
end
def
put
(
url
,
payload
=
nil
)
RestClient
::
Request
.
execute
(
method: :put
,
url:
url
,
payload:
payload
,
verify_ssl:
false
)
rescue
RestClient
::
ExceptionWithResponse
=>
e
return_response_or_raise
(
e
)
with_retry_on_too_many_requests
do
RestClient
::
Request
.
execute
(
method: :put
,
url:
url
,
payload:
payload
,
verify_ssl:
false
)
rescue
RestClient
::
ExceptionWithResponse
=>
e
return_response_or_raise
(
e
)
end
end
def
delete
(
url
)
RestClient
::
Request
.
execute
(
method: :delete
,
url:
url
,
verify_ssl:
false
)
rescue
RestClient
::
ExceptionWithResponse
=>
e
return_response_or_raise
(
e
)
with_retry_on_too_many_requests
do
RestClient
::
Request
.
execute
(
method: :delete
,
url:
url
,
verify_ssl:
false
)
rescue
RestClient
::
ExceptionWithResponse
=>
e
return_response_or_raise
(
e
)
end
end
def
head
(
url
)
RestClient
::
Request
.
execute
(
method: :head
,
url:
url
,
verify_ssl:
false
)
rescue
RestClient
::
ExceptionWithResponse
=>
e
return_response_or_raise
(
e
)
with_retry_on_too_many_requests
do
RestClient
::
Request
.
execute
(
method: :head
,
url:
url
,
verify_ssl:
false
)
rescue
RestClient
::
ExceptionWithResponse
=>
e
return_response_or_raise
(
e
)
end
end
def
with_retry_on_too_many_requests
response
=
nil
Support
::
Retrier
.
retry_until
do
response
=
yield
if
response
.
code
==
HTTP_STATUS_TOO_MANY_REQUESTS
wait_seconds
=
response
.
headers
[
:retry_after
].
to_i
QA
::
Runtime
::
Logger
.
debug
(
"Received 429 - Too many requests. Waiting for
#{
wait_seconds
}
seconds."
)
sleep
wait_seconds
end
response
.
code
!=
HTTP_STATUS_TOO_MANY_REQUESTS
end
response
end
def
parse_body
(
response
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment