diff options
author | 2024-09-20 11:01:52 +0100 | |
---|---|---|
committer | 2024-09-20 11:01:52 +0100 | |
commit | 89f5f6aac9090d601f1dd0420d538d6b3e205b70 (patch) | |
tree | 231176d1c72de51e2b896283abffbb44bd89bd13 | |
parent | fix(deps): update dependency sentry-sdk to v2.14.0 (diff) |
Limit message cache to 100 messages (#279)
-rw-r--r-- | arthur/__main__.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arthur/__main__.py b/arthur/__main__.py index 6416e09..8f70f2b 100644 --- a/arthur/__main__.py +++ b/arthur/__main__.py @@ -33,6 +33,7 @@ async def main() -> None: allowed_roles=(CONFIG.devops_role,), case_insensitive=True, intents=intents, + max_messages=100, ) async with arthur.instance as bot: await bot.start(CONFIG.token.get_secret_value()) |