unrealircd: Move SSL and port generation out of the critical section (#196)

This commit is contained in:
2023-04-16 09:19:05 +02:00
committed by GitHub
parent ddb37d6c3f
commit 11dc5b046e

View File

@ -223,7 +223,6 @@ class UnrealircdController(BaseServerController, DirectoryBasedController):
password_field = 'password "{}";'.format(password) if password else ""
with _STARTSTOP_LOCK():
(services_hostname, services_port) = self.get_hostname_and_port()
(unused_hostname, unused_port) = self.get_hostname_and_port()
@ -261,6 +260,7 @@ class UnrealircdController(BaseServerController, DirectoryBasedController):
else:
faketime_cmd = []
with _STARTSTOP_LOCK():
self.proc = subprocess.Popen(
[
*faketime_cmd,