Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix legacy modules check_username_for_spam #18135

Merged
merged 2 commits into from
Feb 5, 2025
Merged

Conversation

erikjohnston
Copy link
Member

Broke in #17916, as the signature inspection incorrectly looks at the wrapper function. We fix this by setting the signature on the wrapper function to that of the wrapped function via @functools.wraps.

Broke in #17916, as the signature inspection incorrectly looks at the
wrapper function. We fix this by setting the signature on the wrapper
function to that of the wrapped function via `@functools.wraps`.
@erikjohnston erikjohnston marked this pull request as ready for review February 5, 2025 10:58
@erikjohnston erikjohnston requested a review from a team as a code owner February 5, 2025 10:58
@erikjohnston erikjohnston merged commit b8a3330 into develop Feb 5, 2025
37 of 39 checks passed
@erikjohnston erikjohnston deleted the erikj/fix_spamchecker branch February 5, 2025 12:07
Comment on lines +301 to 302
@functools.wraps(wrapped_func)
def run(*args: Any, **kwargs: Any) -> Awaitable:
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Any sort of regression tests we can add here?

The bug has downstream effects of preventing the user directory from working with Synapse modules configured.

It would be nice to have our suite of tests run with and without a no-op Synapse module configured.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants