diff options
author | Mark Haines <mark.haines@matrix.org> | 2014-10-17 17:31:48 +0100 |
---|---|---|
committer | Mark Haines <mark.haines@matrix.org> | 2014-10-17 17:31:48 +0100 |
commit | 82c582076782f180c9f69a523953c3a36b57b3ac (patch) | |
tree | 00a79bdfe56a139cbe427ecc28bad852bdc3663d /synapse/federation | |
parent | SPEC-7: Rename 'ts' to 'origin_server_ts' (diff) | |
download | synapse-82c582076782f180c9f69a523953c3a36b57b3ac.tar.xz |
keep 'origin_server_ts' as 'ts' in the database to avoid needlessly updating schema
Diffstat (limited to 'synapse/federation')
-rw-r--r-- | synapse/federation/units.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/synapse/federation/units.py b/synapse/federation/units.py index dccac2aca7..b2fb964180 100644 --- a/synapse/federation/units.py +++ b/synapse/federation/units.py @@ -118,6 +118,7 @@ class Pdu(JsonEncodedObject): """ if pdu_tuple: d = copy.copy(pdu_tuple.pdu_entry._asdict()) + d["origin_server_ts"] = d.pop("ts") d["content"] = json.loads(d["content_json"]) del d["content_json"] |