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:41:29 -07:00
parent 3530f0bf4b
commit 8dbe956eb4
1 changed files with 1 additions and 1 deletions

View File

@ -275,7 +275,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";
}