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:
parent
17966525e9
commit
a81577d827
|
@ -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);
|
||||
}
|
||||
|
|
|
@ -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")
|
||||
|
|
Loading…
Reference in New Issue