Fix bug which prevented the HS pushing events to the AS due to FrozenEvents

This commit is contained in:
Kegan Dougal 2015-03-02 15:36:37 +00:00
parent 8486910b64
commit 2de5b14fe0

View File

@ -143,7 +143,7 @@ class SimpleHttpClient(object):
query_bytes = urllib.urlencode(args, True)
uri = "%s?%s" % (uri, query_bytes)
json_str = json.dumps(json_body)
json_str = encode_canonical_json(json_body)
response = yield self.agent.request(
"PUT",