add await for blocking loop in backend

This commit is contained in:
msukkari 2025-02-13 10:30:14 -08:00
parent 0b4140f81c
commit 875f9b8586

View file

@ -26,5 +26,5 @@ export const main = async (db: PrismaClient, context: AppContext) => {
connectionManager.registerPollingCallback();
const repoManager = new RepoManager(db, DEFAULT_SETTINGS, redis, context);
repoManager.blockingPollLoop();
await repoManager.blockingPollLoop();
}