HBASE-13289 typo in splitSucessCount metric

In hbase 1.0.0, 0.98.10, 0.98.10.1, 0.98.11, and 0.98.12 'splitSuccessCount' was misspelled as 'splitSuccessCounnt'
This commit is contained in:
Jonathan M Hsieh 2015-04-07 14:38:13 -07:00
parent d5e81523f7
commit af44f79cdf
1 changed files with 1 additions and 1 deletions

View File

@ -281,7 +281,7 @@ public interface MetricsRegionServerSource extends BaseSource {
String SPLIT_KEY = "splitTime";
String SPLIT_REQUEST_KEY = "splitRequestCount";
String SPLIT_REQUEST_DESC = "Number of splits requested";
String SPLIT_SUCCESS_KEY = "splitSuccessCounnt";
String SPLIT_SUCCESS_KEY = "splitSuccessCount";
String SPLIT_SUCCESS_DESC = "Number of successfully executed splits";
String FLUSH_KEY = "flushTime";
}