Skip to content

Commit 6880627

Browse files
committed
Allow empty timeout_at env variable
1 parent cac88b0 commit 6880627

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/apify/_configuration.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -251,6 +251,7 @@ class Configuration(CrawleeConfiguration):
251251
),
252252
description='Date when the Actor will time out',
253253
),
254+
BeforeValidator(lambda val: val if val != '' else None),
254255
] = None
255256

256257
standby_port: Annotated[

0 commit comments

Comments
 (0)