Fix bug which prevented the HS pushing events to the AS due to FrozenEvents
This commit is contained in:
parent
8486910b64
commit
2de5b14fe0
|
@ -143,7 +143,7 @@ class SimpleHttpClient(object):
|
||||||
query_bytes = urllib.urlencode(args, True)
|
query_bytes = urllib.urlencode(args, True)
|
||||||
uri = "%s?%s" % (uri, query_bytes)
|
uri = "%s?%s" % (uri, query_bytes)
|
||||||
|
|
||||||
json_str = json.dumps(json_body)
|
json_str = encode_canonical_json(json_body)
|
||||||
|
|
||||||
response = yield self.agent.request(
|
response = yield self.agent.request(
|
||||||
"PUT",
|
"PUT",
|
||||||
|
|
Loading…
Reference in New Issue