diff options
author | Andrew Morgan <1342360+anoadragon453@users.noreply.github.com> | 2020-06-16 10:13:59 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-16 10:13:59 +0100 |
commit | 3e6b5bba7177274db5533cc5aae0a0f8acf71597 (patch) | |
tree | 4fac13d0e459d55dbeac146bd4653fbfa6d9189f /changelog.d/7684.bugfix | |
parent | Merge pull request #7685 from matrix-org/babolivier/3pid_r0 (diff) | |
download | synapse-3e6b5bba7177274db5533cc5aae0a0f8acf71597.tar.xz |
Wrap register_device coroutine in an ensureDeferred (#7684)
Fixes https://github.com/matrix-org/synapse/issues/7683 Broke in: #7649 We had a `yield` acting on a coroutine. To be fair this one is a bit difficult to notice as there's a function in the middle that just passes the coroutine along.
Diffstat (limited to 'changelog.d/7684.bugfix')
-rw-r--r-- | changelog.d/7684.bugfix | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/changelog.d/7684.bugfix b/changelog.d/7684.bugfix new file mode 100644 index 0000000000..a93a92ea8b --- /dev/null +++ b/changelog.d/7684.bugfix @@ -0,0 +1 @@ +Fix a bug that would crash Synapse on start when using certain password auth providers. Broke in release v1.15.0. |