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
|
@ -46,8 +46,8 @@ public class SetTbrCommand extends BaseCommand {
|
|||
}
|
||||
}
|
||||
|
||||
if (percentage == 0 && duration > 120) {
|
||||
violations.add("Max allowed zero-temp duration is 2h");
|
||||
if (percentage == 0 && duration > 180) {
|
||||
violations.add("Max allowed zero-temp duration is 3h");
|
||||
}
|
||||
|
||||
return violations;
|
||||
|
|
Loading…
Reference in a new issue