[pbs-devel] [PATCH proxmox-backup v2 4/6] ui: tuning: render verification threads in tuning options
Nicolas Frey
n.frey at proxmox.com
Mon Nov 24 12:04:25 CET 2025
account for default-verification-{workers,readers} when rendering
tuning options
Signed-off-by: Nicolas Frey <n.frey at proxmox.com>
---
New in v2
www/Utils.js | 12 ++++++++++++
1 file changed, 12 insertions(+)
diff --git a/www/Utils.js b/www/Utils.js
index a80a59a5..fc9a5916 100644
--- a/www/Utils.js
+++ b/www/Utils.js
@@ -915,6 +915,18 @@ Ext.define('PBS.Utils', {
`${gettext('GC cache capacity')}: ${gc_cache_capacity ?? Proxmox.Utils.defaultText}`,
);
+ let verification_workers = tuning['default-verification-workers'];
+ delete tuning['default-verification-workers'];
+ options.push(
+ `${gettext('Default verification workers')}: ${verification_workers ?? 4}`,
+ );
+
+ let verification_readers = tuning['default-verification-readers'];
+ delete tuning['default-verification-readers'];
+ options.push(
+ `${gettext('Default verification readers')}: ${verification_readers ?? 1}`,
+ );
+
for (const [k, v] of Object.entries(tuning)) {
options.push(`${k}: ${v}`);
}
--
2.47.3
More information about the pbs-devel
mailing list