We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c6fe30a commit 262b135Copy full SHA for 262b135
backend/btrixcloud/crawls.py
@@ -380,7 +380,7 @@ async def get_active_crawls_size(self, oid: UUID) -> int:
380
return results[0].get("totalSum") or 0
381
382
async def get_active_crawls_uploaded_wacz_size(self, oid: UUID) -> int:
383
- """get size of all waczs already uploaded for (e.g. previously or currently paused) crawls"""
+ """get size of all waczs already uploaded for running/paused crawls"""
384
cursor = self.crawls.aggregate(
385
[
386
{"$match": {"state": {"$in": RUNNING_AND_WAITING_STATES}, "oid": oid}},
0 commit comments