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
4cff9376
Commit
4cff9376
authored
6 years ago
by
Erik Johnston
Browse files
Options
Downloads
Patches
Plain Diff
Move server key queries to federation reader
parent
7590e9fa
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
docs/workers.rst
+1
-0
1 addition, 0 deletions
docs/workers.rst
synapse/app/federation_reader.py
+5
-1
5 additions, 1 deletion
synapse/app/federation_reader.py
with
6 additions
and
1 deletion
docs/workers.rst
+
1
−
0
View file @
4cff9376
...
@@ -182,6 +182,7 @@ endpoints matching the following regular expressions::
...
@@ -182,6 +182,7 @@ endpoints matching the following regular expressions::
^/_matrix/federation/v1/event_auth/
^/_matrix/federation/v1/event_auth/
^/_matrix/federation/v1/exchange_third_party_invite/
^/_matrix/federation/v1/exchange_third_party_invite/
^/_matrix/federation/v1/send/
^/_matrix/federation/v1/send/
^/_matrix/key/v2/query
The above endpoints should all be routed to the federation_reader worker by the
The above endpoints should all be routed to the federation_reader worker by the
reverse-proxy configuration.
reverse-proxy configuration.
...
...
This diff is collapsed.
Click to expand it.
synapse/app/federation_reader.py
+
5
−
1
View file @
4cff9376
...
@@ -21,7 +21,7 @@ from twisted.web.resource import NoResource
...
@@ -21,7 +21,7 @@ from twisted.web.resource import NoResource
import
synapse
import
synapse
from
synapse
import
events
from
synapse
import
events
from
synapse.api.urls
import
FEDERATION_PREFIX
from
synapse.api.urls
import
FEDERATION_PREFIX
,
SERVER_KEY_V2_PREFIX
from
synapse.app
import
_base
from
synapse.app
import
_base
from
synapse.config._base
import
ConfigError
from
synapse.config._base
import
ConfigError
from
synapse.config.homeserver
import
HomeServerConfig
from
synapse.config.homeserver
import
HomeServerConfig
...
@@ -44,6 +44,7 @@ from synapse.replication.slave.storage.registration import SlavedRegistrationSto
...
@@ -44,6 +44,7 @@ from synapse.replication.slave.storage.registration import SlavedRegistrationSto
from
synapse.replication.slave.storage.room
import
RoomStore
from
synapse.replication.slave.storage.room
import
RoomStore
from
synapse.replication.slave.storage.transactions
import
SlavedTransactionStore
from
synapse.replication.slave.storage.transactions
import
SlavedTransactionStore
from
synapse.replication.tcp.client
import
ReplicationClientHandler
from
synapse.replication.tcp.client
import
ReplicationClientHandler
from
synapse.rest.key.v2
import
KeyApiV2Resource
from
synapse.server
import
HomeServer
from
synapse.server
import
HomeServer
from
synapse.storage.engines
import
create_engine
from
synapse.storage.engines
import
create_engine
from
synapse.util.httpresourcetree
import
create_resource_tree
from
synapse.util.httpresourcetree
import
create_resource_tree
...
@@ -99,6 +100,9 @@ class FederationReaderServer(HomeServer):
...
@@ -99,6 +100,9 @@ class FederationReaderServer(HomeServer):
),
),
})
})
if
name
in
[
"
keys
"
,
"
federation
"
]:
resources
[
SERVER_KEY_V2_PREFIX
]
=
KeyApiV2Resource
(
self
)
root_resource
=
create_resource_tree
(
resources
,
NoResource
())
root_resource
=
create_resource_tree
(
resources
,
NoResource
())
_base
.
listen_tcp
(
_base
.
listen_tcp
(
...
...
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