Raise hard limit of max duration for zero-temp from 2h to 3h.
(cherry picked from commit 4bf6369)
This commit is contained in:
parent
f83dd1cb67
commit
536bd10e9b
1 changed files with 2 additions and 2 deletions
|
@ -46,8 +46,8 @@ public class SetTbrCommand extends BaseCommand {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (percentage == 0 && duration > 120) {
|
if (percentage == 0 && duration > 180) {
|
||||||
violations.add("Max allowed zero-temp duration is 2h");
|
violations.add("Max allowed zero-temp duration is 3h");
|
||||||
}
|
}
|
||||||
|
|
||||||
return violations;
|
return violations;
|
||||||
|
|
Loading…
Reference in a new issue