From 00f0515d36cf226421d25ea62cf91461fa009836 Mon Sep 17 00:00:00 2001 From: Valentin Lorentz Date: Tue, 14 Jun 2022 15:01:28 +0200 Subject: [PATCH] Remove redundant configuration This statement was a no-op, given the value defined in BASE_CONFIG --- irctest/controllers/ergo.py | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/irctest/controllers/ergo.py b/irctest/controllers/ergo.py index 3878e7b..08034fc 100644 --- a/irctest/controllers/ergo.py +++ b/irctest/controllers/ergo.py @@ -272,6 +272,7 @@ class ErgoController(BaseServerController, DirectoryBasedController): config = self.baseConfig() if not mysql_password: return config + config["datastore"]["mysql"] = { "enabled": True, "host": "localhost", @@ -280,11 +281,7 @@ class ErgoController(BaseServerController, DirectoryBasedController): "history-database": "ergo_history", "timeout": "3s", } - config["accounts"]["multiclient"] = { - "enabled": True, - "allowed-by-default": True, - "always-on": "disabled", - } + config["history"]["persistent"] = { "enabled": True, "unregistered-channels": True,