File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change 5
5
from typing import Annotated
6
6
7
7
from pydantic import AliasChoices , BeforeValidator , Field
8
+ from typing_extensions import deprecated
8
9
9
10
from crawlee ._utils .models import timedelta_ms
10
11
from crawlee .configuration import Configuration as CrawleeConfiguration
@@ -160,15 +161,16 @@ class Configuration(CrawleeConfiguration):
160
161
str | None ,
161
162
Field (
162
163
alias = 'apify_sdk_latest_version' ,
163
- deprecated = True ,
164
164
description = 'Specifies the most recent release version of the Apify SDK for Javascript. Used for '
165
165
'checking for updates.' ,
166
166
),
167
+ deprecated ('SDK version checking is not supported for the Python SDK' ),
167
168
] = None
168
169
169
170
log_format : Annotated [
170
171
str | None ,
171
- Field (alias = 'apify_log_format' , deprecated = True ),
172
+ Field (alias = 'apify_log_format' ),
173
+ deprecated ('Adjust the log format in code instead' ),
172
174
] = None
173
175
174
176
max_paid_dataset_items : Annotated [
@@ -256,6 +258,7 @@ class Configuration(CrawleeConfiguration):
256
258
alias = 'actor_standby_port' ,
257
259
description = 'TCP port for the Actor to start an HTTP server to receive messages in the Actor Standby mode' ,
258
260
),
261
+ deprecated ('Use `web_server_port` instead' ),
259
262
] = 4322
260
263
261
264
token : Annotated [
You can’t perform that action at this time.
0 commit comments