From 4a57d7dfbe19b01918562881cf2b45f3e8f544f1 Mon Sep 17 00:00:00 2001 From: Leo Date: Wed, 23 Aug 2023 12:50:25 -0400 Subject: [PATCH] quickfix: profile sync --- indexer/src/profile.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/indexer/src/profile.ts b/indexer/src/profile.ts index 20d5f36..400dad0 100644 --- a/indexer/src/profile.ts +++ b/indexer/src/profile.ts @@ -117,7 +117,7 @@ export default class Profile { async sync() { await this.syncProfiles(); - logger.info("Sleeping metadata sync for 1m"); - setTimeout(() => this.syncProfiles, 1000 * 60 * 60); + logger.info("Sleeping metadata sync for 60m"); + setTimeout(() => this.sync(), 1000 * 60 * 60); } }