From 5d6644efe070b908dd802c299c9e6a1427cb8adf Mon Sep 17 00:00:00 2001 From: Andrew Morgan <1342360+anoadragon453@users.noreply.github.com> Date: Fri, 21 Jun 2019 16:52:09 +0100 Subject: Only import jinja2 when needed (#5514) Fixes https://github.com/matrix-org/synapse/issues/5431 `jinja2` was being imported even when it wasn't strictly necessary. This made it required to run Synapse, even if the functionality that required it wasn't enabled. This was causing new Synapse installations to crash on startup. Email modules are now required. --- changelog.d/5514.bugfix | 1 + 1 file changed, 1 insertion(+) create mode 100644 changelog.d/5514.bugfix (limited to 'changelog.d/5514.bugfix') diff --git a/changelog.d/5514.bugfix b/changelog.d/5514.bugfix new file mode 100644 index 0000000000..c3a76a854a --- /dev/null +++ b/changelog.d/5514.bugfix @@ -0,0 +1 @@ +Fix bug with `jinja2` preventing Synapse from starting. Users who had this problem should now simply need to run `pip install matrix-synapse`. -- cgit 1.4.1