remove errant exception and style

pull/3975/head
Neil Johnson 2018-10-23 17:44:39 +01:00
parent c6584f4b5f
commit a67d8ace9b
3 changed files with 7 additions and 7 deletions

View File

@ -1 +1 @@
Servers with auto-join rooms, should automatically create those rooms when first user registers
Servers with auto-join rooms, will now automatically create those rooms when the first user registers

View File

@ -18,7 +18,7 @@ from distutils.util import strtobool
from synapse.types import RoomAlias
from synapse.util.stringutils import random_string_with_symbols
from ._base import Config, ConfigError
from synapse.config._base import Config, ConfigError
class RegistrationConfig(Config):

View File

@ -231,15 +231,15 @@ class RegistrationHandler(BaseHandler):
for r in self.hs.config.auto_join_rooms:
try:
if should_auto_create_rooms:
if self.hs.hostname != RoomAlias.from_string(r).domain:
logger.warn(
room_alias = RoomAlias.from_string(r)
if self.hs.hostname != room_alias.domain:
logger.warning(
'Cannot create room alias %s, '
'it does not match server domain' % (r,)
'it does not match server domain', (r,)
)
raise SynapseError()
else:
# create room expects the localpart of the room alias
room_alias_localpart = RoomAlias.from_string(r).localpart
room_alias_localpart = room_alias.localpart
yield self.room_creation_handler.create_room(
fake_requester,
config={