Skip to content

Commit bdb34f6

Browse files
committed
Always use no acks late when build time is bigger than default
1 parent c02ab50 commit bdb34f6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

readthedocs/core/utils/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ def prepare_build(
164164
if (
165165
project.has_feature(Feature.BUILD_NO_ACKS_LATE)
166166
or project.container_time_limit
167-
and project.container_time_limit >= 3600
167+
and project.container_time_limit >= settings.BUILD_TIME_LIMIT
168168
):
169169
log.info("Disabling ACKS_LATE for this particular build.")
170170
options["acks_late"] = False

0 commit comments

Comments
 (0)