Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Matrix
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Container Registry
Model registry
Operate
Environments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
TeDomum
Matrix
Commits
ea7b3c4b
Commit
ea7b3c4b
authored
7 years ago
by
Erik Johnston
Browse files
Options
Downloads
Patches
Plain Diff
Remove unused ReplicationLayer
parent
6ea27faf
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/federation/__init__.py
+0
-8
0 additions, 8 deletions
synapse/federation/__init__.py
synapse/federation/replication.py
+0
-51
0 additions, 51 deletions
synapse/federation/replication.py
with
0 additions
and
59 deletions
synapse/federation/__init__.py
+
0
−
8
View file @
ea7b3c4b
...
...
@@ -15,11 +15,3 @@
"""
This package includes all the federation specific logic.
"""
from
.replication
import
ReplicationLayer
def
initialize_http_replication
(
hs
):
transport
=
hs
.
get_federation_transport_client
()
return
ReplicationLayer
(
hs
,
transport
)
This diff is collapsed.
Click to expand it.
synapse/federation/replication.py
deleted
100644 → 0
+
0
−
51
View file @
6ea27faf
# -*- coding: utf-8 -*-
# Copyright 2014-2016 OpenMarket Ltd
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""
This layer is responsible for replicating with remote home servers using
a given transport.
"""
from
.federation_client
import
FederationClient
from
.federation_server
import
FederationServer
import
logging
logger
=
logging
.
getLogger
(
__name__
)
class
ReplicationLayer
(
FederationClient
,
FederationServer
):
"""
This layer is responsible for replicating with remote home servers over
the given transport. I.e., does the sending and receiving of PDUs to
remote home servers.
The layer communicates with the rest of the server via a registered
ReplicationHandler.
In more detail, the layer:
* Receives incoming data and processes it into transactions and pdus.
* Fetches any PDUs it thinks it might have missed.
* Keeps the current state for contexts up to date by applying the
suitable conflict resolution.
* Sends outgoing pdus wrapped in transactions.
* Fills out the references to previous pdus/transactions appropriately
for outgoing data.
"""
def
__init__
(
self
,
hs
,
transport_layer
):
super
(
ReplicationLayer
,
self
).
__init__
(
hs
)
def
__str__
(
self
):
return
"
<ReplicationLayer(%s)>
"
%
self
.
server_name
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