batch-render-follows
Some checks are pending
Deploy to core / deploy (push) Waiting to run

This commit is contained in:
2024-02-21 18:26:18 +03:00
parent ab31d0d296
commit 960cdf30da
2 changed files with 22 additions and 12 deletions

View File

@@ -7,7 +7,7 @@ from ariadne.asgi import GraphQL
from starlette.applications import Starlette
from starlette.routing import Route
from services.follows import FollowsCached
from services.follows import start_cached_follows
from services.rediscache import redis
from services.schema import resolvers
from services.search import search_service
@@ -37,7 +37,7 @@ app = Starlette(
on_startup=[
redis.connect,
ViewedStorage.init,
FollowsCached.worker,
start_cached_follows,
search_service.info,
# start_sentry,
start,