Skip to content

Commit 00f0515

Browse files
committed
Remove redundant configuration
This statement was a no-op, given the value defined in BASE_CONFIG
1 parent 5371077 commit 00f0515

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

irctest/controllers/ergo.py

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -272,6 +272,7 @@ def addMysqlToConfig(self, config: Optional[Dict] = None) -> Dict:
272272
config = self.baseConfig()
273273
if not mysql_password:
274274
return config
275+
275276
config["datastore"]["mysql"] = {
276277
"enabled": True,
277278
"host": "localhost",
@@ -280,11 +281,7 @@ def addMysqlToConfig(self, config: Optional[Dict] = None) -> Dict:
280281
"history-database": "ergo_history",
281282
"timeout": "3s",
282283
}
283-
config["accounts"]["multiclient"] = {
284-
"enabled": True,
285-
"allowed-by-default": True,
286-
"always-on": "disabled",
287-
}
284+
288285
config["history"]["persistent"] = {
289286
"enabled": True,
290287
"unregistered-channels": True,

0 commit comments

Comments
 (0)