Add scale to CrawlOut (#1487)

Fixes #1486 

`scale` is already saved in the crawl but needed to be added to
`CrawlOut`.
This commit is contained in:
Tessa Walsh 2024-01-23 17:10:37 -05:00 committed by GitHub
parent 73ea9815c4
commit b252931c71
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -609,6 +609,7 @@ class CrawlOut(BaseMongoModel):
stopping: Optional[bool]
manual: Optional[bool]
cid_rev: Optional[int]
scale: Optional[conint(ge=1, le=MAX_CRAWL_SCALE)] # type: ignore
storageQuotaReached: Optional[bool]
execMinutesQuotaReached: Optional[bool]