We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
lfg
These scheduled tasks and environment variables are being deprecated as part of the LFG overhaul and discord-py update.
contestsuite/settings.py
# Celery Beat # https://celery-safwan.readthedocs.io/en/latest/reference/celery.beat.html CELERY_BEAT_SCHEDULE = { 'cleanup-lfg-rosters': { 'task': 'lfg.tasks.cleanup_lfg_rosters', 'schedule': 600.0, }, 'scrape-discord-members': { 'task': 'lfg.tasks.scrape_discord_members', 'schedule': 1800.0, }, 'verify-lfg-profiles': { 'task': 'lfg.tasks.verify_lfg_profiles', 'schedule': 600.0, }, }
BOT_CHANNEL_WEBHOOK_URL = get_secret('BOT_CHANNEL_WEBHOOK_URL', None)
GUILD_ID = int(get_secret('GUILD_ID', 0))
SCRAPE_BOT_TOKEN = get_secret('SCRAPE_BOT_TOKEN', None)
The text was updated successfully, but these errors were encountered:
getsbuffer
Successfully merging a pull request may close this issue.
These scheduled tasks and environment variables are being deprecated as part of the LFG overhaul and discord-py update.
contestsuite/settings.py
BOT_CHANNEL_WEBHOOK_URL = get_secret('BOT_CHANNEL_WEBHOOK_URL', None)
(remove)GUILD_ID = int(get_secret('GUILD_ID', 0))
(remove)SCRAPE_BOT_TOKEN = get_secret('SCRAPE_BOT_TOKEN', None)
(remove)The text was updated successfully, but these errors were encountered: