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 10f7cce commit 0c3f36dCopy full SHA for 0c3f36d
src/apify/_configuration.py
@@ -8,6 +8,7 @@
8
from typing_extensions import deprecated
9
10
from crawlee._utils.models import timedelta_ms
11
+from crawlee._utils.urls import validate_http_url
12
from crawlee.configuration import Configuration as CrawleeConfiguration
13
14
@@ -262,12 +263,13 @@ class Configuration(CrawleeConfiguration):
262
263
] = 4321
264
265
standby_url: Annotated[
- str,
266
+ str | None,
267
+ BeforeValidator(validate_http_url),
268
Field(
269
alias='actor_standby_url',
270
description='URL for accessing web servers of Actor runs in Standby mode',
271
),
- ]
272
+ ] = None
273
274
token: Annotated[
275
str | None,
0 commit comments