This repository has been archived by the owner on Apr 26, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge commit '8238b55e0' into anoa/dinsic_release_1_21_x
* commit '8238b55e0': Update description of server_name config option (#8415) Discard an empty upload_name before persisting an uploaded file (#7905) Don't table scan events on worker startup (#8419) Mypy fixes for `synapse.handlers.federation` (#8422)
- Loading branch information
Showing
15 changed files
with
107 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Fix a longstanding bug when storing a media file with an empty `upload_name`. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Improve description of `server_name` config option in `homserver.yaml`. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Add experimental support for sharding event persister. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Typing fixes for `synapse.handlers.federation`. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -33,10 +33,23 @@ | |
|
||
## Server ## | ||
|
||
# The domain name of the server, with optional explicit port. | ||
# This is used by remote servers to connect to this server, | ||
# e.g. matrix.org, localhost:8080, etc. | ||
# This is also the last part of your UserID. | ||
# The public-facing domain of the server | ||
# | ||
# The server_name name will appear at the end of usernames and room addresses | ||
# created on this server. For example if the server_name was example.com, | ||
# usernames on this server would be in the format @user:example.com | ||
# | ||
# In most cases you should avoid using a matrix specific subdomain such as | ||
# matrix.example.com or synapse.example.com as the server_name for the same | ||
# reasons you wouldn't use [email protected] as your email address. | ||
# See https://github.com/matrix-org/synapse/blob/master/docs/delegate.md | ||
# for information on how to host Synapse on a subdomain while preserving | ||
# a clean server_name. | ||
# | ||
# The server_name cannot be changed later so it is important to | ||
# configure this correctly before you start Synapse. It should be all | ||
# lowercase and may contain an explicit port. | ||
# Examples: matrix.org, localhost:8080 | ||
# | ||
server_name: "SERVERNAME" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -647,10 +647,23 @@ def generate_config_section( | |
"""\ | ||
## Server ## | ||
# The domain name of the server, with optional explicit port. | ||
# This is used by remote servers to connect to this server, | ||
# e.g. matrix.org, localhost:8080, etc. | ||
# This is also the last part of your UserID. | ||
# The public-facing domain of the server | ||
# | ||
# The server_name name will appear at the end of usernames and room addresses | ||
# created on this server. For example if the server_name was example.com, | ||
# usernames on this server would be in the format @user:example.com | ||
# | ||
# In most cases you should avoid using a matrix specific subdomain such as | ||
# matrix.example.com or synapse.example.com as the server_name for the same | ||
# reasons you wouldn't use [email protected] as your email address. | ||
# See https://github.com/matrix-org/synapse/blob/master/docs/delegate.md | ||
# for information on how to host Synapse on a subdomain while preserving | ||
# a clean server_name. | ||
# | ||
# The server_name cannot be changed later so it is important to | ||
# configure this correctly before you start Synapse. It should be all | ||
# lowercase and may contain an explicit port. | ||
# Examples: matrix.org, localhost:8080 | ||
# | ||
server_name: "%(server_name)s" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters