We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9db1a02 commit ed3ba94Copy full SHA for ed3ba94
src/engine.rs
@@ -461,6 +461,7 @@ fn manage_auto_turbo(
461
fn validate_turbo_auto_settings(settings: &TurboAutoSettings) -> Result<(), EngineError> {
462
if settings.load_threshold_high <= settings.load_threshold_low
463
|| settings.load_threshold_high > 100.0
464
+ || settings.load_threshold_high < 0.0
465
|| settings.load_threshold_low < 0.0
466
|| settings.load_threshold_low > 100.0
467
{
0 commit comments