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
a558d6c57a
commit
61839d7143
|
@ -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);
|
||||||
}
|
}
|
||||||
|
|
|
@ -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")
|
||||||
|
|
Loading…
Reference in New Issue