sharding (general): Add launch data filters.

Filter cached reaction role messages by shardid.
Filter expiring rented room by shardid.
Filter scanned study badges by shardid.
Filter resumed study sessions by shardid.
Filter resumed workouts by shardid.

Fix a spacing issue in the log printer.
This commit is contained in:
2021-12-22 17:26:49 +02:00
parent 25e22c07d0
commit 276886a3a7
6 changed files with 18 additions and 9 deletions

View File

@@ -7,6 +7,7 @@ from collections import defaultdict
from utils.lib import utc_now
from data import tables
from data.conditions import THIS_SHARD
from core import Lion
from meta import client
@@ -398,7 +399,7 @@ async def _init_session_tracker(client):
ended = 0
# Grab all ongoing sessions from data
rows = current_sessions.fetch_rows_where()
rows = current_sessions.fetch_rows_where(guildid=THIS_SHARD)
# Iterate through, resume or end as needed
for row in rows: