summary refs log tree commit diff
path: root/changelog.d
diff options
context:
space:
mode:
authorEric Eastwood <erice@element.io>2023-05-16 08:56:42 -0500
committerEric Eastwood <contact@ericeastwood.com>2023-05-16 12:33:18 -0500
commit77cda342be3c81fa8557d208e67dc1662ddb462a (patch)
tree0cee727fb6f6d4ae773780805d769ced7303a000 /changelog.d
parentFix subscriptable type usage in Python <3.9 (#15604) (diff)
downloadsynapse-77cda342be3c81fa8557d208e67dc1662ddb462a.tar.xz
`traceback.format_exception(...)` usage that is compatible with Python 3.7 and 3.11 (#15599)
* Usage that is compatible with Python 3.8 and 3.11

> Since Python 3.10, instead of passing value and tb, an exception object can
  be passed as the first argument. If value and tb are provided, the first
  argument is ignored in order to provide backwards compatibility.
>
> -- https://docs.python.org/3/library/traceback.html

* Add changelog
Diffstat (limited to 'changelog.d')
-rw-r--r--changelog.d/15599.bugfix1
1 files changed, 1 insertions, 0 deletions
diff --git a/changelog.d/15599.bugfix b/changelog.d/15599.bugfix
new file mode 100644
index 0000000000..b58af8ad55
--- /dev/null
+++ b/changelog.d/15599.bugfix
@@ -0,0 +1 @@
+Print full error and stack-trace of any exception that occurs during startup/initialization.