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

Commit 9727430

Browse files
author
David Robertson
authored
Add more prompts to bug report form (#14522)
1 parent 6d47b7e commit 9727430

File tree

2 files changed

+44
-2
lines changed

2 files changed

+44
-2
lines changed

.github/ISSUE_TEMPLATE/BUG_REPORT.yml

+43-2
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,36 @@ body:
7474
- Debian packages from packages.matrix.org
7575
- pip (from PyPI)
7676
- Other (please mention below)
77+
- I don't know
78+
validations:
79+
required: true
80+
- type: input
81+
id: database
82+
attributes:
83+
label: Database
84+
description: |
85+
Are you using SQLite or PostgreSQL? What's the version of your database?
86+
87+
If PostgreSQL, please also answer the following:
88+
- are you using a single PostgreSQL server
89+
or [separate servers for `main` and `state`](https://matrix-org.github.io/synapse/latest/usage/configuration/config_documentation.html#databases)?
90+
- have you previously ported from SQLite using the Synapse "portdb" script?
91+
- have you previously restored from a backup?
92+
validations:
93+
required: true
94+
- type: dropdown
95+
id: workers
96+
attributes:
97+
label: Workers
98+
description: |
99+
Are you running a single Synapse process, or are you running
100+
[2 or more workers](https://matrix-org.github.io/synapse/latest/workers.html)?
101+
options:
102+
- Single process
103+
- Multiple workers
104+
- I don't know
105+
validations:
106+
required: true
77107
- type: textarea
78108
id: platform
79109
attributes:
@@ -83,17 +113,28 @@ body:
83113
e.g. distro, hardware, if it's running in a vm/container, etc.
84114
validations:
85115
required: true
116+
- type: textarea
117+
id: config
118+
attributes:
119+
label: Configuration
120+
description: |
121+
Do you have any unusual config options turned on? If so, please provide details.
122+
123+
- Experimental or undocumented features
124+
- [Presence](https://matrix-org.github.io/synapse/latest/usage/configuration/config_documentation.html#presence)
125+
- [Message retention](https://matrix-org.github.io/synapse/latest/message_retention_policies.html)
126+
- [Synapse modules](https://matrix-org.github.io/synapse/latest/modules/index.html)
86127
- type: textarea
87128
id: logs
88129
attributes:
89130
label: Relevant log output
90131
description: |
91132
Please copy and paste any relevant log output, ideally at INFO or DEBUG log level.
92-
This will be automatically formatted into code, so there is no need for backticks.
133+
This will be automatically formatted into code, so there is no need for backticks (`\``).
93134
94135
Please be careful to remove any personal or private data.
95136
96-
**Bug reports are usually very difficult to diagnose without logging.**
137+
**Bug reports are usually impossible to diagnose without logging.**
97138
render: shell
98139
validations:
99140
required: true

changelog.d/14522.misc

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Add more prompts to the bug report form.

0 commit comments

Comments
 (0)