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.
None
1 parent 1e5f3f0 commit c02ab50Copy full SHA for c02ab50
readthedocs/core/utils/__init__.py
@@ -161,7 +161,11 @@ def prepare_build(
161
# At 1h exactly, the task is grabbed by another worker and re-executed,
162
# even while it's still running on the original worker.
163
# https://github.com/readthedocs/readthedocs.org/issues/12317
164
- if project.has_feature(Feature.BUILD_NO_ACKS_LATE) or project.container_time_limit >= 3600:
+ if (
165
+ project.has_feature(Feature.BUILD_NO_ACKS_LATE)
166
+ or project.container_time_limit
167
+ and project.container_time_limit >= 3600
168
+ ):
169
log.info("Disabling ACKS_LATE for this particular build.")
170
options["acks_late"] = False
171
0 commit comments