Skip to content

Commit 9db0872

Browse files
committed
rebase fix
1 parent 7c37672 commit 9db0872

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/util/state.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1390,7 +1390,10 @@ return inx;
13901390

13911391
async markProfileUploaded(result: UploadResult & { modified?: string }) {
13921392
result.modified = this._timestamp();
1393-
await this.redis.set(`${this.key}:profileUploaded`, JSON.stringify(result));
1393+
await this.redis.set(
1394+
`${this.crawlId}:profileUploaded`,
1395+
JSON.stringify(result),
1396+
);
13941397
}
13951398

13961399
// DEPENDENT CRAWLS FOR DEDUPE

0 commit comments

Comments
 (0)