mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2024-10-01 11:49:51 -04:00
c3040dd5cc
============================== Bugfixes -------- - Fix a bug introduced in Synapse 1.40.0 that caused Synapse to fail to process incoming federation traffic after handling a large amount of events in a v1 room. ([\#11806](https://github.com/matrix-org/synapse/issues/11806)) -----BEGIN PGP SIGNATURE----- iQJHBAABCAAxFiEEgQG31Z317NrSMt0QiISIDS7+X/QFAmHum5QTHGFuZHJld0Bh bW9yZ2FuLnh5egAKCRCIhIgNLv5f9G6vD/9Dw6V0687vzahnU6aYWaecRSO1sbww EtcCiXOh0r8HXPAwEIXJYomSTTbPl0eAwP8T1the1WZVQArvRW2VvMzDoBheO8bt dCm4CTKFCGUsI/GrlFDPtjAEd6kruAETmpHZn7bAFSqtIpissD6FjUwg/ND/NJfM zVM/bMgM0+js6eD9J5/k16E1ZWj7Lbp+/fKN+qTeQrXzIeT13WQZ4Nz1o/cqe/21 o/coI3FmYq8CzKpfA6qZMDd/OtYpYqwwr7otSmW+6qHeZI/yqeoxlpzfgSZGpRUe mtXqbQllZQeqrbm8oK96GNmKcThy6awTwJPoD46b1AOkmFdf/lGSqO0lnTQRRPqR hyPPdrx6Lt2t7DDbVVyUElzkqLPhVJtrItPDC8669sWvmSgsPQdUqIsRmhF+8aJe ffjRvKbGRICnNZkT+qGf1HwuMHajZyAIHAS/kyFDKUZCvau3VQ1wlyOqVQ1hWr7+ 3k3CobjSx4y1bYKXncAK6hWH6lE8M319jaTnVfYXocDLWRonyFf7o286Q+c8WBGF tY0FzvUPb5S2kktC4WLwcqtcTWK1cu5MI6GfD69EqL7iifJRVyKDeUoD7tiUvgzN O2wBl2soJIsAU+8y16WQu7p+k2nZIomCCAySnW3C8mlxvv7CKQu0Url8J7IH8uZE ZVN2MMe7H+ZHJQ== =Fpsa -----END PGP SIGNATURE----- Merge tag 'v1.51.0rc2' into develop Synapse 1.51.0rc2 (2022-01-24) ============================== Bugfixes -------- - Fix a bug introduced in Synapse 1.40.0 that caused Synapse to fail to process incoming federation traffic after handling a large amount of events in a v1 room. ([\#11806](https://github.com/matrix-org/synapse/issues/11806))
58 lines
1.8 KiB
Python
58 lines
1.8 KiB
Python
# Copyright 2014-2016 OpenMarket Ltd
|
|
# Copyright 2018-9 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.
|
|
|
|
""" This is a reference implementation of a Matrix homeserver.
|
|
"""
|
|
|
|
import json
|
|
import os
|
|
import sys
|
|
|
|
# Check that we're not running on an unsupported Python version.
|
|
if sys.version_info < (3, 7):
|
|
print("Synapse requires Python 3.7 or above.")
|
|
sys.exit(1)
|
|
|
|
# Twisted and canonicaljson will fail to import when this file is executed to
|
|
# get the __version__ during a fresh install. That's OK and subsequent calls to
|
|
# actually start Synapse will import these libraries fine.
|
|
try:
|
|
from twisted.internet import protocol
|
|
from twisted.internet.protocol import Factory
|
|
from twisted.names.dns import DNSDatagramProtocol
|
|
|
|
protocol.Factory.noisy = False
|
|
Factory.noisy = False
|
|
DNSDatagramProtocol.noisy = False
|
|
except ImportError:
|
|
pass
|
|
|
|
# Use the standard library json implementation instead of simplejson.
|
|
try:
|
|
from canonicaljson import set_json_library
|
|
|
|
set_json_library(json)
|
|
except ImportError:
|
|
pass
|
|
|
|
__version__ = "1.51.0rc2"
|
|
|
|
if bool(os.environ.get("SYNAPSE_TEST_PATCH_LOG_CONTEXTS", False)):
|
|
# We import here so that we don't have to install a bunch of deps when
|
|
# running the packaging tox test.
|
|
from synapse.util.patch_inline_callbacks import do_patch
|
|
|
|
do_patch()
|