Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
synapse
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Monitor
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Maunium
synapse
Commits
c4bdf2d7
Commit
c4bdf2d7
authored
5 years ago
by
Andrew Morgan
Browse files
Options
Downloads
Patches
Plain Diff
Remove content from being sent for account data rdata stream
parent
963ffb60
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
synapse/replication/tcp/streams/_base.py
+3
-3
3 additions, 3 deletions
synapse/replication/tcp/streams/_base.py
synapse/storage/data_stores/main/account_data.py
+3
-3
3 additions, 3 deletions
synapse/storage/data_stores/main/account_data.py
with
6 additions
and
6 deletions
synapse/replication/tcp/streams/_base.py
+
3
−
3
View file @
c4bdf2d7
...
...
@@ -89,7 +89,7 @@ TagAccountDataStreamRow = namedtuple(
)
AccountDataStreamRow
=
namedtuple
(
"
AccountDataStream
"
,
(
"
user_id
"
,
"
room_id
"
,
"
data_type
"
,
"
data
"
),
# str # str # str
# dict
(
"
user_id
"
,
"
room_id
"
,
"
data_type
"
),
# str # str # str
)
GroupsStreamRow
=
namedtuple
(
"
GroupsStreamRow
"
,
...
...
@@ -421,8 +421,8 @@ class AccountDataStream(Stream):
results
=
list
(
room_results
)
results
.
extend
(
(
stream_id
,
user_id
,
None
,
account_data_type
,
content
)
for
stream_id
,
user_id
,
account_data_type
,
content
in
global_results
(
stream_id
,
user_id
,
None
,
account_data_type
)
for
stream_id
,
user_id
,
account_data_type
in
global_results
)
return
results
...
...
This diff is collapsed.
Click to expand it.
synapse/storage/data_stores/main/account_data.py
+
3
−
3
View file @
c4bdf2d7
...
...
@@ -184,14 +184,14 @@ class AccountDataWorkerStore(SQLBaseStore):
current_id(int): The position to fetch up to.
Returns:
A deferred pair of lists of tuples of stream_id int, user_id string,
room_id string, type
string, and content
string.
room_id string,
and
type string.
"""
if
last_room_id
==
current_id
and
last_global_id
==
current_id
:
return
defer
.
succeed
(([],
[]))
def
get_updated_account_data_txn
(
txn
):
sql
=
(
"
SELECT stream_id, user_id, account_data_type
, content
"
"
SELECT stream_id, user_id, account_data_type
"
"
FROM account_data WHERE ? < stream_id AND stream_id <= ?
"
"
ORDER BY stream_id ASC LIMIT ?
"
)
...
...
@@ -199,7 +199,7 @@ class AccountDataWorkerStore(SQLBaseStore):
global_results
=
txn
.
fetchall
()
sql
=
(
"
SELECT stream_id, user_id, room_id, account_data_type
, content
"
"
SELECT stream_id, user_id, room_id, account_data_type
"
"
FROM room_account_data WHERE ? < stream_id AND stream_id <= ?
"
"
ORDER BY stream_id ASC LIMIT ?
"
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment