postquery-topics-authors
Some checks failed
Deploy on push / deploy (push) Failing after 9s

This commit is contained in:
2024-08-07 12:18:29 +03:00
parent ebec80f198
commit 1e8d2aba0a
2 changed files with 47 additions and 70 deletions

3
cache/precache.py vendored
View File

@@ -87,7 +87,8 @@ async def precache_data():
topic_dict = topic.dict() if hasattr(topic, "dict") else topic
await cache_topic(topic_dict)
await asyncio.gather(
precache_topics_followers(topic_dict["id"], session), precache_topics_authors(topic_dict["id"], session)
precache_topics_followers(topic_dict["id"], session),
precache_topics_authors(topic_dict["id"], session),
)
logger.info(f"{len(topics)} topics and their followings precached")