Skip to content

Commit 696dbca

Browse files
committed
feat: add standby URL, change default port
1 parent 17c3bbe commit 696dbca

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

src/apify/_configuration.py

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,15 @@ class Configuration(CrawleeConfiguration):
259259
description='TCP port for the Actor to start an HTTP server to receive messages in the Actor Standby mode',
260260
),
261261
deprecated('Use `web_server_port` instead'),
262-
] = 4322
262+
] = 4321
263+
264+
standby_url: Annotated[
265+
str,
266+
Field(
267+
alias='actor_standby_url',
268+
description='URL for accessing the HTTP server in Actor Standby mode',
269+
),
270+
]
263271

264272
token: Annotated[
265273
str | None,

0 commit comments

Comments
 (0)