0
0
Fork 1
mirror of https://mau.dev/maunium/synapse.git synced 2024-06-18 10:38:21 +02:00
This commit is contained in:
Erik Johnston 2015-11-20 17:17:58 +00:00
parent 6408541075
commit 0eabfa55f6
2 changed files with 3 additions and 3 deletions

View file

@ -397,7 +397,7 @@ class Keyring(object):
for server_name, key_ids in server_names_and_key_ids
}
},
long_requests=True,
long_retries=True,
)
keys = {}

View file

@ -302,7 +302,7 @@ class MatrixFederationHttpClient(object):
defer.returnValue(json.loads(body))
@defer.inlineCallbacks
def post_json(self, destination, path, data={}, long_requests=True):
def post_json(self, destination, path, data={}, long_retries=True):
""" Sends the specifed json data using POST
Args:
@ -332,7 +332,7 @@ class MatrixFederationHttpClient(object):
path.encode("ascii"),
body_callback=body_callback,
headers_dict={"Content-Type": ["application/json"]},
long_requests=True,
long_retries=True,
)
if 200 <= response.code < 300: