From cac5cd213953022650c72e35aaedaf76a8520c54 Mon Sep 17 00:00:00 2001 From: Zane Mattingly Date: Sat, 4 Jan 2025 11:12:32 -0800 Subject: [PATCH] tiny little finishing touches (#569) --- charts/agimus/Chart.yaml | 4 ++-- configuration.json | 2 +- tasks/wrapped_generation.py | 1 - 3 files changed, 3 insertions(+), 4 deletions(-) diff --git a/charts/agimus/Chart.yaml b/charts/agimus/Chart.yaml index ee20f511..2c66cf7a 100644 --- a/charts/agimus/Chart.yaml +++ b/charts/agimus/Chart.yaml @@ -2,5 +2,5 @@ apiVersion: v2 name: agimus description: A helm chart for a discord bot that also runs a mysql db type: application -version: v2.12.2 -appVersion: v2.12.2 +version: v2.12.3 +appVersion: v2.12.3 diff --git a/configuration.json b/configuration.json index 739e5684..53319fdc 100755 --- a/configuration.json +++ b/configuration.json @@ -353,7 +353,7 @@ }, "wrapped_generation": { "channels": [], - "crontab": "*/5 * * * *", + "crontab": "*/3 * * * *", "enabled": true, "maintainer_user_id": 735658100958298154 } diff --git a/tasks/wrapped_generation.py b/tasks/wrapped_generation.py index 274d0514..82aaa856 100644 --- a/tasks/wrapped_generation.py +++ b/tasks/wrapped_generation.py @@ -23,7 +23,6 @@ async def wrapped_generation(): return await db_update_wrapped_job_status(job['job_id'], 'processing') - await user.send("Heads up, we're processing your AGIMUS Wrapped! Get Ready!") try: video_path = await _generate_wrapped(job['user_discord_id']) await db_update_wrapped_job_status(job['job_id'], 'complete', video_path=video_path)