From 2038e3d668818beb19341fa6d09dabe59a9fbd35 Mon Sep 17 00:00:00 2001 From: Ilya Kreymer Date: Fri, 7 Jul 2023 12:08:30 -0700 Subject: [PATCH] remove default: similar to #952, remove default extraHops setting as it disables 'url list' extraHops by forcing the value to 0 (#954) --- backend/btrixcloud/crawlconfigs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/btrixcloud/crawlconfigs.py b/backend/btrixcloud/crawlconfigs.py index 6f9cb07c..997fb2a8 100644 --- a/backend/btrixcloud/crawlconfigs.py +++ b/backend/btrixcloud/crawlconfigs.py @@ -58,7 +58,7 @@ class Seed(BaseModel): sitemap: Union[bool, HttpUrl, None] allowHash: Optional[bool] depth: Optional[int] - extraHops: Optional[int] = 0 + extraHops: Optional[int] # ============================================================================