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 a558d6c57a
commit 61839d7143
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 * @see org.apache.hadoop.hbase.master.HMasterCommandLine
*/ */
public static void main(String [] args) { public static void main(String [] args) {
LOG.info("STARTING service '" + HMaster.class.getSimpleName()); LOG.info("STARTING service " + HMaster.class.getSimpleName());
VersionInfo.logVersion(); VersionInfo.logVersion();
new HMasterCommandLine(HMaster.class).doMain(args); 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 * @see org.apache.hadoop.hbase.regionserver.HRegionServerCommandLine
*/ */
public static void main(String[] args) throws Exception { public static void main(String[] args) throws Exception {
LOG.info("STARTING service '" + HRegionServer.class.getSimpleName()); LOG.info("STARTING service " + HRegionServer.class.getSimpleName());
VersionInfo.logVersion(); VersionInfo.logVersion();
Configuration conf = HBaseConfiguration.create(); Configuration conf = HBaseConfiguration.create();
@SuppressWarnings("unchecked") @SuppressWarnings("unchecked")