This commit is contained in:
pen 2024-12-01 03:59:21 +09:00 committed by GitHub
parent 98366d1ed5
commit e09ecac7bb
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -131,7 +131,6 @@ export class FanoutTimelineService {
const scanResult = await this.redisForTimelines.scan(cursor, 'MATCH', timeline, 'COUNT', 300);
cursor = scanResult[0];
timeLines = timeLines.concat(scanResult[1]);
scanResult[1].forEach(x => console.log(x));
} while (cursor !== '0');
}