mirror of
https://github.com/element-hq/synapse.git
synced 2024-11-22 17:46:08 +03:00
Fix import of the default SAML mapping provider. (#10477)
Fix a circular import, which was causing exceptions on boot if SAML was configured.
This commit is contained in:
parent
10dcfae46f
commit
31c6b30dd4
2 changed files with 1 additions and 2 deletions
1
changelog.d/10477.bugfix
Normal file
1
changelog.d/10477.bugfix
Normal file
|
@ -0,0 +1 @@
|
|||
Fix bug introduced in Synapse 1.38 which caused an exception at startup when SAML authentication was enabled.
|
|
@ -15,8 +15,6 @@
|
|||
import logging
|
||||
from typing import TYPE_CHECKING, Optional
|
||||
|
||||
import synapse.state
|
||||
import synapse.storage
|
||||
import synapse.types
|
||||
from synapse.api.constants import EventTypes, Membership
|
||||
from synapse.api.ratelimiting import Ratelimiter
|
||||
|
|
Loading…
Reference in a new issue