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.
options
1 parent 7308f32 commit 37687ddCopy full SHA for 37687dd
readthedocs/core/utils/__init__.py
@@ -104,10 +104,6 @@ def prepare_build(
104
options["soft_time_limit"] = time_limit
105
options["time_limit"] = int(time_limit * 1.2)
106
107
- structlog.contextvars.bind_contextvars(
108
- time_limit=options["time_limit"], soft_time_limit=options["soft_time_limit"]
109
- )
110
-
111
if commit:
112
structlog.contextvars.bind_contextvars(commit=commit)
113
@@ -180,6 +176,9 @@ def prepare_build(
180
176
log.info("Disabling ACKS_LATE for this particular build.")
181
177
options["acks_late"] = False
182
178
179
+ # Log all the extra options passed to the task
+ structlog.contextvars.bind_contextvars(**options)
+
183
return (
184
update_docs_task.signature(
185
args=(
0 commit comments