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.
1 parent 3194ca6 commit 2d77492Copy full SHA for 2d77492
dispatcher/backend/src/common/schemas/offliners/mindtouch.py
@@ -147,6 +147,25 @@ class Meta:
147
data_key="illustration-url",
148
)
149
150
+ optimization_cache = String(
151
+ metadata={
152
+ "label": "Optimization Cache URL",
153
+ "description": "S3 Storage URL including credentials and bucket",
154
+ "secret": True,
155
+ },
156
+ data_key="optimization-cache",
157
+ )
158
+
159
+ assets_workers = fields.Integer(
160
161
+ "label": "Asset workers",
162
+ "description": "Number of parallel workers for asset processing. Default: "
163
+ "10",
164
165
+ required=False,
166
+ data_key="assets-workers",
167
168
169
debug = fields.Boolean(
170
truthy=[True],
171
falsy=[False],
0 commit comments