Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
synapse
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Monitor
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Maunium
synapse
Commits
b41c2eaa
Commit
b41c2eaa
authored
6 years ago
by
Andrew Morgan
Browse files
Options
Downloads
Patches
Plain Diff
Clean up backoff_on_404 and metehod calls
parent
2150151a
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
synapse/http/matrixfederationclient.py
+13
-9
13 additions, 9 deletions
synapse/http/matrixfederationclient.py
with
13 additions
and
9 deletions
synapse/http/matrixfederationclient.py
+
13
−
9
View file @
b41c2eaa
...
@@ -193,7 +193,6 @@ class MatrixFederationHttpClient(object):
...
@@ -193,7 +193,6 @@ class MatrixFederationHttpClient(object):
self
,
self
,
request
,
request
,
try_trailing_slash_on_400
=
False
,
try_trailing_slash_on_400
=
False
,
backoff_on_404
=
False
,
**
send_request_args
**
send_request_args
):
):
"""
Wrapper for _send_request which can optionally retry the request
"""
Wrapper for _send_request which can optionally retry the request
...
@@ -206,8 +205,6 @@ class MatrixFederationHttpClient(object):
...
@@ -206,8 +205,6 @@ class MatrixFederationHttpClient(object):
try_trailing_slash_on_400 (bool): Whether on receiving a 400
try_trailing_slash_on_400 (bool): Whether on receiving a 400
'
M_UNRECOGNIZED
'
from the server to retry the request with a
'
M_UNRECOGNIZED
'
from the server to retry the request with a
trailing slash appended to the request path.
trailing slash appended to the request path.
backoff_on_404 (bool): Whether to backoff on 404 when making a
request with a trailing slash.
send_request_args (Dict): A dictionary of arguments to pass to
send_request_args (Dict): A dictionary of arguments to pass to
`_send_request()`.
`_send_request()`.
...
@@ -220,7 +217,7 @@ class MatrixFederationHttpClient(object):
...
@@ -220,7 +217,7 @@ class MatrixFederationHttpClient(object):
"""
"""
try
:
try
:
response
=
yield
self
.
_send_request
(
response
=
yield
self
.
_send_request
(
request
,
backoff_on_404
=
backoff_on_404
,
**
send_request_args
request
,
**
send_request_args
)
)
except
HttpResponseException
as
e
:
except
HttpResponseException
as
e
:
# Received an HTTP error > 300. Check if it meets the requirements
# Received an HTTP error > 300. Check if it meets the requirements
...
@@ -237,7 +234,7 @@ class MatrixFederationHttpClient(object):
...
@@ -237,7 +234,7 @@ class MatrixFederationHttpClient(object):
request
.
path
+=
"
/
"
request
.
path
+=
"
/
"
response
=
yield
self
.
_send_request
(
response
=
yield
self
.
_send_request
(
request
,
backoff_on_404
=
backoff_on_404
,
**
send_request_args
request
,
**
send_request_args
)
)
defer
.
returnValue
(
response
)
defer
.
returnValue
(
response
)
...
@@ -579,8 +576,12 @@ class MatrixFederationHttpClient(object):
...
@@ -579,8 +576,12 @@ class MatrixFederationHttpClient(object):
)
)
response
=
yield
self
.
_send_request_with_optional_trailing_slash
(
response
=
yield
self
.
_send_request_with_optional_trailing_slash
(
request
,
try_trailing_slash_on_400
,
backoff_on_404
,
request
,
long_retries
=
long_retries
,
timeout
=
timeout
,
ignore_backoff
=
ignore_backoff
,
try_trailing_slash_on_400
,
backoff_on_404
=
backoff_on_404
,
ignore_backoff
=
ignore_backoff
,
long_retries
=
long_retries
,
timeout
=
timeout
,
)
)
body
=
yield
_handle_json_response
(
body
=
yield
_handle_json_response
(
...
@@ -693,9 +694,12 @@ class MatrixFederationHttpClient(object):
...
@@ -693,9 +694,12 @@ class MatrixFederationHttpClient(object):
)
)
response
=
yield
self
.
_send_request_with_optional_trailing_slash
(
response
=
yield
self
.
_send_request_with_optional_trailing_slash
(
request
,
try_trailing_slash_on_400
,
False
,
request
,
retry_on_dns_fail
=
retry_on_dns_fail
,
timeout
=
timeout
,
try_trailing_slash_on_400
,
backoff_on_404
=
False
,
ignore_backoff
=
ignore_backoff
,
ignore_backoff
=
ignore_backoff
,
retry_on_dns_fail
=
retry_on_dns_fail
,
timeout
=
timeout
,
)
)
body
=
yield
_handle_json_response
(
body
=
yield
_handle_json_response
(
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment