Fix group stream replication
The stream update functions expect the storage function to return a list of tuples.
This commit is contained in:
parent
68fd82e840
commit
ea18996f54
|
@ -1172,13 +1172,13 @@ class GroupServerStore(SQLBaseStore):
|
||||||
LIMIT ?
|
LIMIT ?
|
||||||
"""
|
"""
|
||||||
txn.execute(sql, (from_token, to_token, limit,))
|
txn.execute(sql, (from_token, to_token, limit,))
|
||||||
return [{
|
return [(
|
||||||
"stream_id": stream_id,
|
stream_id,
|
||||||
"group_id": group_id,
|
group_id,
|
||||||
"user_id": user_id,
|
user_id,
|
||||||
"type": gtype,
|
gtype,
|
||||||
"content": json.loads(content_json),
|
json.loads(content_json),
|
||||||
} for stream_id, group_id, user_id, gtype, content_json in txn]
|
) for stream_id, group_id, user_id, gtype, content_json in txn]
|
||||||
return self.runInteraction(
|
return self.runInteraction(
|
||||||
"get_all_groups_changes", _get_all_groups_changes_txn,
|
"get_all_groups_changes", _get_all_groups_changes_txn,
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in New Issue