Skip to content
This repository was archived by the owner on Apr 26, 2024. It is now read-only.

Commit a175e60

Browse files
committed
Merge remote-tracking branch 'origin/develop' into shhs
2 parents 9b3a63e + 0e54342 commit a175e60

File tree

109 files changed

+1109
-1126
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

109 files changed

+1109
-1126
lines changed

.buildkite/pipeline.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -173,11 +173,12 @@ steps:
173173
queue: "medium"
174174
command:
175175
- "bash .buildkite/merge_base_branch.sh"
176-
- "bash .buildkite/synapse_sytest.sh"
176+
- "bash /synapse_sytest.sh"
177177
plugins:
178178
- docker#v3.0.1:
179179
image: "matrixdotorg/sytest-synapse:py35"
180180
propagate-environment: true
181+
always-pull: true
181182
retry:
182183
automatic:
183184
- exit_status: -1
@@ -192,11 +193,12 @@ steps:
192193
POSTGRES: "1"
193194
command:
194195
- "bash .buildkite/merge_base_branch.sh"
195-
- "bash .buildkite/synapse_sytest.sh"
196+
- "bash /synapse_sytest.sh"
196197
plugins:
197198
- docker#v3.0.1:
198199
image: "matrixdotorg/sytest-synapse:py35"
199200
propagate-environment: true
201+
always-pull: true
200202
retry:
201203
automatic:
202204
- exit_status: -1
@@ -212,11 +214,12 @@ steps:
212214
WORKERS: "1"
213215
command:
214216
- "bash .buildkite/merge_base_branch.sh"
215-
- "bash .buildkite/synapse_sytest.sh"
217+
- "bash /synapse_sytest.sh"
216218
plugins:
217219
- docker#v3.0.1:
218220
image: "matrixdotorg/sytest-synapse:py35"
219221
propagate-environment: true
222+
always-pull: true
220223
soft_fail: true
221224
retry:
222225
automatic:

.buildkite/synapse_sytest.sh

Lines changed: 0 additions & 145 deletions
This file was deleted.

MANIFEST.in

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ include demo/README
77
include demo/demo.tls.dh
88
include demo/*.py
99
include demo/*.sh
10+
include sytest-blacklist
1011

1112
recursive-include synapse/storage/schema *.sql
1213
recursive-include synapse/storage/schema *.sql.postgres

changelog.d/5606.misc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Move logging code out of `synapse.util` and into `synapse.logging`.

changelog.d/5609.bugfix

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Fix 'utime went backwards' errors on daemonization.

changelog.d/5611.misc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Add a blacklist file to the repo to blacklist certain sytests from failing CI.

changelog.d/5616.misc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Make runtime errors surrounding password reset emails much clearer.

changelog.d/5617.misc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Move logging code out of `synapse.util` and into `synapse.logging`.

contrib/example_log_config.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
# Example log_config file for synapse. To enable, point `log_config` to it in
1+
# Example log_config file for synapse. To enable, point `log_config` to it in
22
# `homeserver.yaml`, and restart synapse.
33
#
4-
# This configuration will produce similar results to the defaults within
4+
# This configuration will produce similar results to the defaults within
55
# synapse, but can be edited to give more flexibility.
66

77
version: 1
@@ -12,7 +12,7 @@ formatters:
1212

1313
filters:
1414
context:
15-
(): synapse.util.logcontext.LoggingContextFilter
15+
(): synapse.logging.context.LoggingContextFilter
1616
request: ""
1717

1818
handlers:
@@ -35,7 +35,7 @@ handlers:
3535
root:
3636
level: INFO
3737
handlers: [console] # to use file handler instead, switch to [file]
38-
38+
3939
loggers:
4040
synapse:
4141
level: INFO

contrib/experiments/test_messaging.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636

3737
from synapse.app.homeserver import SynapseHomeServer
3838

39-
# from synapse.util.logutils import log_function
39+
# from synapse.logging.utils import log_function
4040

4141
from twisted.internet import reactor, defer
4242
from twisted.python import log

0 commit comments

Comments
 (0)