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

Fix 'redaction_retention_period' sampel config to match guidelines #6117

Merged
merged 2 commits into from
Sep 26, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions changelog.d/6117.misc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Fix up sample config entry for `redaction_retention_period` option.
2 changes: 1 addition & 1 deletion docs/sample_config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,7 @@ listeners:
#
# Defaults to `7d`. Set to `null` to disable.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

incidentally, we should probably decide if we use ` or '... we seem to have a mix.

#
redaction_retention_period: 7d
#redaction_retention_period: 28d

# How long to track users' last seen time and IPs in the database.
#
Expand Down
2 changes: 1 addition & 1 deletion synapse/config/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -742,7 +742,7 @@ def generate_config_section(
#
# Defaults to `7d`. Set to `null` to disable.
#
redaction_retention_period: 7d
#redaction_retention_period: 28d

# How long to track users' last seen time and IPs in the database.
#
Expand Down