diff options
author | Richard van der Hoff <1389908+richvdh@users.noreply.github.com> | 2019-03-25 16:38:05 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-25 16:38:05 +0000 |
commit | 9bde730ef821a20f6a785813b19953a9ba187ce7 (patch) | |
tree | 6b86286e597c30f73665326d08c9761add0f5978 /tests/replication/tcp/__init__.py | |
parent | Use an explicit dbname for postgres connections in the tests. (#4928) (diff) | |
download | synapse-9bde730ef821a20f6a785813b19953a9ba187ce7.tar.xz |
Fix bug where read-receipts lost their timestamps (#4927)
Make sure that they are sent correctly over the replication stream. Fixes: #4898
Diffstat (limited to 'tests/replication/tcp/__init__.py')
-rw-r--r-- | tests/replication/tcp/__init__.py | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/replication/tcp/__init__.py b/tests/replication/tcp/__init__.py new file mode 100644 index 0000000000..1453d04571 --- /dev/null +++ b/tests/replication/tcp/__init__.py @@ -0,0 +1,14 @@ +# -*- coding: utf-8 -*- +# Copyright 2019 New Vector 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. |