remove limit

This commit is contained in:
Jicheng Lu 2025-02-25 19:50:11 -06:00
parent 4bd1a05a80
commit 2428349247
2 changed files with 0 additions and 20 deletions

View file

@ -500,16 +500,6 @@ public partial class FileRepository
batchSize = batchLimit;
}
if (bufferHours <= 0)
{
bufferHours = 12;
}
if (messageLimit <= 0)
{
messageLimit = 2;
}
foreach (var d in Directory.GetDirectories(dir))
{
var convFile = Path.Combine(d, CONVERSATION_FILE);

View file

@ -466,16 +466,6 @@ public partial class MongoRepository
batchSize = batchLimit;
}
if (bufferHours <= 0)
{
bufferHours = 12;
}
if (messageLimit <= 0)
{
messageLimit = 2;
}
while (true)
{
var skip = (page - 1) * batchSize;