This repository was archived by the owner on Apr 26, 2024. It is now read-only.
Wrap register_device coroutine in an ensureDeferred#7684
Merged
anoadragon453 merged 5 commits intorelease-v1.15.1from Jun 16, 2020
Merged
Wrap register_device coroutine in an ensureDeferred#7684anoadragon453 merged 5 commits intorelease-v1.15.1from
anoadragon453 merged 5 commits intorelease-v1.15.1from
Conversation
richvdh
reviewed
Jun 12, 2020
Member
richvdh
left a comment
There was a problem hiding this comment.
I'd quite like to see a test that hits this method, to avoid us breaking it again.
|
The Cloudron package (which uses the LDAP integration) works again after applying this fix. |
clokep
reviewed
Jun 15, 2020
anoadragon453
commented
Jun 15, 2020
tests/module_api/test_api.py
Outdated
Member
Author
There was a problem hiding this comment.
I feel like added_at at least shouldn't be, but this is probably out of scope for this PR.
Member
There was a problem hiding this comment.
Seems unrelated to these changes, yes. Maybe make a note somewhere to look back at this? (File an issue?)
clokep
approved these changes
Jun 15, 2020
Member
Author
|
We've decided we want to release this as a fix in v1.15.1 as it was introduced in v1.15.0. |
9d1538d to
1263968
Compare
babolivier
pushed a commit
that referenced
this pull request
Sep 1, 2021
* commit '03619324f': Create a ListenerConfig object (#7681) Fix changelog wording 1.15.1 Wrap register_device coroutine in an ensureDeferred (#7684) Ensure the body is a string before comparing push rules. (#7701) Ensure etag is a string for GET room_keys/version response (#7691) Update m.id.phone to use 'phone' instead of 'number' (#7687) Fix "There was no active span when trying to log." error (#7698) Enable 3PID add/bind/unbind endpoints on r0 routes Discard RDATA from already seen positions. (#7648) Replace iteritems/itervalues/iterkeys with native versions. (#7692) Fix warnings about losing log context during UI auth. (#7688) Fix a typo when comparing the URI & method during UI Auth. (#7689) Remove "user_id" from GET /presence. (#7606) Increase the default SAML session expirary time to 15 minutes. (#7664) fix typo in sample_config.yaml (#7652) Take out a lock before modifying _CACHES (#7663) Add option to enable encryption by default for new rooms (#7639) Clean-up the fallback login code. (#7657)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Fixes #7683
Broke in: #7649
We had a
yieldacting 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.