mirror of
https://mau.dev/maunium/synapse.git
synced 2024-10-01 01:36:05 -04:00
Merge branch 'release-v0.99.1'
This commit is contained in:
commit
f830a3be2a
10
CHANGES.md
10
CHANGES.md
@ -1,3 +1,13 @@
|
|||||||
|
Synapse 0.99.1.1 (2019-02-14)
|
||||||
|
=============================
|
||||||
|
|
||||||
|
Bugfixes
|
||||||
|
--------
|
||||||
|
|
||||||
|
- Fix "TypeError: '>' not supported" when starting without an existing certificate.
|
||||||
|
Fix a bug where an existing certificate would be reprovisoned every day. ([\#4648](https://github.com/matrix-org/synapse/issues/4648))
|
||||||
|
|
||||||
|
|
||||||
Synapse 0.99.1 (2019-02-14)
|
Synapse 0.99.1 (2019-02-14)
|
||||||
===========================
|
===========================
|
||||||
|
|
||||||
|
6
debian/changelog
vendored
6
debian/changelog
vendored
@ -1,3 +1,9 @@
|
|||||||
|
matrix-synapse-py3 (0.99.1.1) stable; urgency=medium
|
||||||
|
|
||||||
|
* New synapse release 0.99.1.1
|
||||||
|
|
||||||
|
-- Synapse Packaging team <packages@matrix.org> Thu, 14 Feb 2019 17:19:44 +0000
|
||||||
|
|
||||||
matrix-synapse-py3 (0.99.1) stable; urgency=medium
|
matrix-synapse-py3 (0.99.1) stable; urgency=medium
|
||||||
|
|
||||||
[ Damjan Georgievski ]
|
[ Damjan Georgievski ]
|
||||||
|
@ -58,7 +58,11 @@ RUN apt-get update -qq -o Acquire::Languages=none \
|
|||||||
sqlite3
|
sqlite3
|
||||||
|
|
||||||
COPY --from=builder /dh-virtualenv_1.1-1_all.deb /
|
COPY --from=builder /dh-virtualenv_1.1-1_all.deb /
|
||||||
RUN apt-get install -yq /dh-virtualenv_1.1-1_all.deb
|
|
||||||
|
# install dhvirtualenv. Update the apt cache again first, in case we got a
|
||||||
|
# cached cache from docker the first time.
|
||||||
|
RUN apt-get update -qq -o Acquire::Languages=none \
|
||||||
|
&& apt-get install -yq /dh-virtualenv_1.1-1_all.deb
|
||||||
|
|
||||||
WORKDIR /synapse/source
|
WORKDIR /synapse/source
|
||||||
ENTRYPOINT ["bash","/synapse/source/docker/build_debian.sh"]
|
ENTRYPOINT ["bash","/synapse/source/docker/build_debian.sh"]
|
||||||
|
@ -27,4 +27,4 @@ try:
|
|||||||
except ImportError:
|
except ImportError:
|
||||||
pass
|
pass
|
||||||
|
|
||||||
__version__ = "0.99.1"
|
__version__ = "0.99.1.1"
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
# Copyright 2014-2016 OpenMarket Ltd
|
# Copyright 2014-2016 OpenMarket Ltd
|
||||||
|
# Copyright 2019 New Vector Ltd
|
||||||
#
|
#
|
||||||
# Licensed under the Apache License, Version 2.0 (the "License");
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
# you may not use this file except in compliance with the License.
|
# you may not use this file except in compliance with the License.
|
||||||
@ -14,11 +15,12 @@
|
|||||||
# See the License for the specific language governing permissions and
|
# See the License for the specific language governing permissions and
|
||||||
# limitations under the License.
|
# limitations under the License.
|
||||||
|
|
||||||
|
from __future__ import print_function
|
||||||
|
|
||||||
import gc
|
import gc
|
||||||
import logging
|
import logging
|
||||||
import os
|
import os
|
||||||
import sys
|
import sys
|
||||||
import traceback
|
|
||||||
|
|
||||||
from six import iteritems
|
from six import iteritems
|
||||||
|
|
||||||
@ -27,6 +29,7 @@ from prometheus_client import Gauge
|
|||||||
|
|
||||||
from twisted.application import service
|
from twisted.application import service
|
||||||
from twisted.internet import defer, reactor
|
from twisted.internet import defer, reactor
|
||||||
|
from twisted.python.failure import Failure
|
||||||
from twisted.web.resource import EncodingResourceWrapper, NoResource
|
from twisted.web.resource import EncodingResourceWrapper, NoResource
|
||||||
from twisted.web.server import GzipEncoderFactory
|
from twisted.web.server import GzipEncoderFactory
|
||||||
from twisted.web.static import File
|
from twisted.web.static import File
|
||||||
@ -394,10 +397,10 @@ def setup(config_options):
|
|||||||
# is less than our re-registration threshold.
|
# is less than our re-registration threshold.
|
||||||
provision = False
|
provision = False
|
||||||
|
|
||||||
if (cert_days_remaining is None):
|
if (
|
||||||
provision = True
|
cert_days_remaining is None or
|
||||||
|
cert_days_remaining < hs.config.acme_reprovision_threshold
|
||||||
if cert_days_remaining > hs.config.acme_reprovision_threshold:
|
):
|
||||||
provision = True
|
provision = True
|
||||||
|
|
||||||
if provision:
|
if provision:
|
||||||
@ -438,7 +441,11 @@ def setup(config_options):
|
|||||||
hs.get_datastore().start_doing_background_updates()
|
hs.get_datastore().start_doing_background_updates()
|
||||||
except Exception:
|
except Exception:
|
||||||
# Print the exception and bail out.
|
# Print the exception and bail out.
|
||||||
traceback.print_exc(file=sys.stderr)
|
print("Error during startup:", file=sys.stderr)
|
||||||
|
|
||||||
|
# this gives better tracebacks than traceback.print_exc()
|
||||||
|
Failure().printTraceback(file=sys.stderr)
|
||||||
|
|
||||||
if reactor.running:
|
if reactor.running:
|
||||||
reactor.stop()
|
reactor.stop()
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
|
@ -242,3 +242,5 @@ def setup_logging(config, use_worker_options=False):
|
|||||||
[_log],
|
[_log],
|
||||||
redirectStandardIO=not config.no_redirect_stdio,
|
redirectStandardIO=not config.no_redirect_stdio,
|
||||||
)
|
)
|
||||||
|
if not config.no_redirect_stdio:
|
||||||
|
print("Redirected stdout/stderr to logs")
|
||||||
|
Loading…
Reference in New Issue
Block a user