fix and rename timeout_ms and parallel_limit

This commit is contained in:
m0duspwnens
2023-05-12 14:57:55 -04:00
parent 05a81596e5
commit d1f7e5f4a7
3 changed files with 6 additions and 6 deletions

View File

@@ -3,8 +3,8 @@ sensoroni:
config: config:
analyze: analyze:
enabled: False enabled: False
analyze_timeout_ms: 900000 timeout_ms: 900000
analyze_parallel_limit: 5 parallel_limit: 5
node_checkin_interval_ms: 10000 node_checkin_interval_ms: 10000
node_description: node_description:
sensoronikey: sensoronikey:

View File

@@ -16,8 +16,8 @@
"modules": { "modules": {
{%- if SENSORONIMERGED.config.analyze.enabled %} {%- if SENSORONIMERGED.config.analyze.enabled %}
"analyze": { "analyze": {
"timeoutMs": {{ SENSORONIMERGED.config.analyze_timeout_ms }}, "timeoutMs": {{ SENSORONIMERGED.config.analyze.timeout_ms }},
"parallelLimit": {{ SENSORONIMERGED.config.analyze_parallel_limit }} "parallelLimit": {{ SENSORONIMERGED.config.analyze.parallel_limit }}
}, },
{%- endif %} {%- endif %}
"importer": {}, "importer": {},

View File

@@ -9,11 +9,11 @@ sensoroni:
description: Enable or disable the analyzer. description: Enable or disable the analyzer.
advanced: True advanced: True
helpLink: sensoroni.html helpLink: sensoroni.html
analyze_timeout_ms: timeout_ms:
description: Timeout period for the analyzer. description: Timeout period for the analyzer.
advanced: True advanced: True
helpLink: sensoroni.html helpLink: sensoroni.html
analyze_parallel_limit: parallel_limit:
description: Parallel limit for the analyzer. description: Parallel limit for the analyzer.
advanced: True advanced: True
helpLink: sensoroni.html helpLink: sensoroni.html