Guanghao Zhang created HBASE-14609:
--------------------------------------
Summary: Can't config all day as OffPeakHours
Key: HBASE-14609
URL: https://issues.apache.org/jira/browse/HBASE-14609
Project: HBase
Issue Type: Bug
Reporter: Guanghao Zhang
Assignee: Guanghao Zhang
Priority: Minor
The offpeak hours is [startHour, endHour) and endhour is exclusive. But endHour
is not valid when config as 24, so we can't config all day as OffPeakHours.
{code}
private static boolean isValidHour(int hour) {
return 0 <= hour && hour <= 23;
}
{code}
Let endHour=24 is valid or enable startHour==endHour can fix this.
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)