Skip to content

Commit

Permalink
Remove redundant configuration
Browse files Browse the repository at this point in the history
This statement was a no-op, given the value defined in BASE_CONFIG
  • Loading branch information
progval committed Jun 14, 2022
1 parent 5371077 commit 00f0515
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions irctest/controllers/ergo.py
Original file line number Diff line number Diff line change
Expand Up @@ -272,6 +272,7 @@ def addMysqlToConfig(self, config: Optional[Dict] = None) -> Dict:
config = self.baseConfig()
if not mysql_password:
return config

config["datastore"]["mysql"] = {
"enabled": True,
"host": "localhost",
Expand All @@ -280,11 +281,7 @@ def addMysqlToConfig(self, config: Optional[Dict] = None) -> Dict:
"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,
Expand Down

0 comments on commit 00f0515

Please sign in to comment.