HBASE-18195 Removed redundant single quote from start message for HMaster and HRegionServer

Signed-off-by: Michael Stack <stack@apache.org>
This commit is contained in:
Umesh Agashe 2017-06-08 14:50:30 -07:00 committed by Michael Stack
parent 17966525e9
commit a81577d827
2 changed files with 2 additions and 2 deletions

View File

@ -2833,7 +2833,7 @@ public class HMaster extends HRegionServer implements MasterServices {
* @see org.apache.hadoop.hbase.master.HMasterCommandLine
*/
public static void main(String [] args) {
LOG.info("STARTING service '" + HMaster.class.getSimpleName());
LOG.info("STARTING service " + HMaster.class.getSimpleName());
VersionInfo.logVersion();
new HMasterCommandLine(HMaster.class).doMain(args);
}

View File

@ -2946,7 +2946,7 @@ public class HRegionServer extends HasThread implements
* @see org.apache.hadoop.hbase.regionserver.HRegionServerCommandLine
*/
public static void main(String[] args) throws Exception {
LOG.info("STARTING service '" + HRegionServer.class.getSimpleName());
LOG.info("STARTING service " + HRegionServer.class.getSimpleName());
VersionInfo.logVersion();
Configuration conf = HBaseConfiguration.create();
@SuppressWarnings("unchecked")