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
a8c8e4ef
Commit
a8c8e4ef
authored
7 years ago
by
Erik Johnston
Browse files
Options
Downloads
Patches
Plain Diff
Comment
parent
414522ae
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/federation/send_queue.py
+7
-1
7 additions, 1 deletion
synapse/federation/send_queue.py
synapse/federation/transaction_queue.py
+2
-0
2 additions, 0 deletions
synapse/federation/transaction_queue.py
with
9 additions
and
1 deletion
synapse/federation/send_queue.py
+
7
−
1
View file @
a8c8e4ef
...
@@ -191,9 +191,15 @@ class FederationRemoteSendQueue(object):
...
@@ -191,9 +191,15 @@ class FederationRemoteSendQueue(object):
self
.
notifier
.
on_new_replication_data
()
self
.
notifier
.
on_new_replication_data
()
def
send_presence
(
self
,
states
):
def
send_presence
(
self
,
states
):
"""
As per TransactionQueue
"""
"""
As per TransactionQueue
Args:
states (list(UserPresenceState))
"""
pos
=
self
.
_next_pos
()
pos
=
self
.
_next_pos
()
# We only want to send presence for our own users, so lets always just
# filter here just in case.
local_states
=
filter
(
lambda
s
:
self
.
is_mine_id
(
s
.
user_id
),
states
)
local_states
=
filter
(
lambda
s
:
self
.
is_mine_id
(
s
.
user_id
),
states
)
self
.
presence_map
.
update
({
state
.
user_id
:
state
for
state
in
local_states
})
self
.
presence_map
.
update
({
state
.
user_id
:
state
for
state
in
local_states
})
...
...
This diff is collapsed.
Click to expand it.
synapse/federation/transaction_queue.py
+
2
−
0
View file @
a8c8e4ef
...
@@ -251,6 +251,8 @@ class TransactionQueue(object):
...
@@ -251,6 +251,8 @@ class TransactionQueue(object):
# First we queue up the new presence by user ID, so multiple presence
# First we queue up the new presence by user ID, so multiple presence
# updates in quick successtion are correctly handled
# updates in quick successtion are correctly handled
# We only want to send presence for our own users, so lets always just
# filter here just in case.
self
.
pending_presence
.
update
({
self
.
pending_presence
.
update
({
state
.
user_id
:
state
for
state
in
states
state
.
user_id
:
state
for
state
in
states
if
self
.
is_mine_id
(
state
.
user_id
)
if
self
.
is_mine_id
(
state
.
user_id
)
...
...
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