From ef45712aa890c088c07c6ada0799f5929ebd451e Mon Sep 17 00:00:00 2001 From: nexy7574 Date: Sun, 5 May 2024 02:33:18 +0100 Subject: [PATCH] Forgot to add starboard to the conf defaults --- src/conf.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/conf.py b/src/conf.py index 3018339..b7d92fa 100644 --- a/src/conf.py +++ b/src/conf.py @@ -43,6 +43,7 @@ CONFIG.setdefault("responder", {}) CONFIG.setdefault("network", {}) CONFIG.setdefault("quote_a", {"channel": None}) CONFIG.setdefault("redis", {"host": "redis", "port": 6379, "decode_responses": True}) +CONFIG.setdefault("starboard", {}) if CONFIG["redis"].pop("db", None) is not None: log.warning("`redis.db` cannot be manually specified, each cog that uses redis has its own db value! Value ignored")