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
Package registry
Container Registry
Model registry
Operate
Terraform modules
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
Timo Ley
synapse
Commits
f10ce894
Commit
f10ce894
authored
8 years ago
by
Erik Johnston
Browse files
Options
Downloads
Patches
Plain Diff
Don't double json encode federation replication data
parent
a5c401bd
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
synapse/app/federation_sender.py
+1
-3
1 addition, 3 deletions
synapse/app/federation_sender.py
synapse/federation/send_queue.py
+9
-10
9 additions, 10 deletions
synapse/federation/send_queue.py
with
10 additions
and
13 deletions
synapse/app/federation_sender.py
+
1
−
3
View file @
f10ce894
...
...
@@ -51,7 +51,6 @@ from daemonize import Daemonize
import
sys
import
logging
import
gc
import
ujson
as
json
logger
=
logging
.
getLogger
(
"
synapse.app.appservice
"
)
...
...
@@ -290,8 +289,7 @@ class FederationSenderHandler(object):
# Parse the rows in the stream
for
row
in
rows
:
typ
=
row
.
type
content_js
=
row
.
data
content
=
json
.
loads
(
content_js
)
content
=
row
.
data
if
typ
==
send_queue
.
PRESENCE_TYPE
:
destination
=
content
[
"
destination
"
]
...
...
This diff is collapsed.
Click to expand it.
synapse/federation/send_queue.py
+
9
−
10
View file @
f10ce894
...
...
@@ -35,7 +35,6 @@ from synapse.util.metrics import Measure
import
synapse.metrics
from
blist
import
sorteddict
import
ujson
metrics
=
synapse
.
metrics
.
get_metrics_for
(
__name__
)
...
...
@@ -258,10 +257,10 @@ class FederationRemoteSendQueue(object):
)
for
(
key
,
(
dest
,
user_id
))
in
dest_user_ids
:
rows
.
append
((
key
,
PRESENCE_TYPE
,
ujson
.
dumps
(
{
rows
.
append
((
key
,
PRESENCE_TYPE
,
{
"
destination
"
:
dest
,
"
state
"
:
self
.
presence_map
[
user_id
].
as_dict
(),
}))
)
}))
# Fetch changes keyed edus
keys
=
self
.
keyed_edu_changed
.
keys
()
...
...
@@ -271,10 +270,10 @@ class FederationRemoteSendQueue(object):
for
(
pos
,
(
destination
,
edu_key
))
in
keyed_edus
:
rows
.
append
(
(
pos
,
KEYED_EDU_TYPE
,
ujson
.
dumps
(
{
(
pos
,
KEYED_EDU_TYPE
,
{
"
key
"
:
edu_key
,
"
edu
"
:
self
.
keyed_edu
[(
destination
,
edu_key
)].
get_internal_dict
(),
})
)
})
)
# Fetch changed edus
...
...
@@ -284,7 +283,7 @@ class FederationRemoteSendQueue(object):
edus
=
set
((
k
,
self
.
edus
[
k
])
for
k
in
keys
[
i
:
j
])
for
(
pos
,
edu
)
in
edus
:
rows
.
append
((
pos
,
EDU_TYPE
,
ujson
.
dumps
(
edu
.
get_internal_dict
()))
)
rows
.
append
((
pos
,
EDU_TYPE
,
edu
.
get_internal_dict
()))
# Fetch changed failures
keys
=
self
.
failures
.
keys
()
...
...
@@ -293,10 +292,10 @@ class FederationRemoteSendQueue(object):
failures
=
set
((
k
,
self
.
failures
[
k
])
for
k
in
keys
[
i
:
j
])
for
(
pos
,
(
destination
,
failure
))
in
failures
:
rows
.
append
((
pos
,
FAILURE_TYPE
,
ujson
.
dumps
(
{
rows
.
append
((
pos
,
FAILURE_TYPE
,
{
"
destination
"
:
destination
,
"
failure
"
:
failure
,
}))
)
}))
# Fetch changed device messages
keys
=
self
.
device_messages
.
keys
()
...
...
@@ -305,9 +304,9 @@ class FederationRemoteSendQueue(object):
device_messages
=
set
((
k
,
self
.
device_messages
[
k
])
for
k
in
keys
[
i
:
j
])
for
(
pos
,
destination
)
in
device_messages
:
rows
.
append
((
pos
,
DEVICE_MESSAGE_TYPE
,
ujson
.
dumps
(
{
rows
.
append
((
pos
,
DEVICE_MESSAGE_TYPE
,
{
"
destination
"
:
destination
,
}))
)
}))
# Sort rows based on pos
rows
.
sort
()
...
...
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