From 9db0872ecc1bdb1c30f934021e11cb7332e386c3 Mon Sep 17 00:00:00 2001 From: Ilya Kreymer Date: Thu, 27 Nov 2025 22:41:34 -0800 Subject: [PATCH] rebase fix --- src/util/state.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/util/state.ts b/src/util/state.ts index 6a8de1ba..8f814739 100644 --- a/src/util/state.ts +++ b/src/util/state.ts @@ -1390,7 +1390,10 @@ return inx; async markProfileUploaded(result: UploadResult & { modified?: string }) { result.modified = this._timestamp(); - await this.redis.set(`${this.key}:profileUploaded`, JSON.stringify(result)); + await this.redis.set( + `${this.crawlId}:profileUploaded`, + JSON.stringify(result), + ); } // DEPENDENT CRAWLS FOR DEDUPE