Added missing double quote to migration necessary message, fixing build
git-svn-id: https://svn.apache.org/repos/asf/hadoop/hbase/trunk@629316 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
9b37593ad6
commit
79d04a0252
|
@ -276,7 +276,7 @@ public class HMaster extends Thread implements HConstants, HMasterInterface,
|
||||||
// Output on stdout so user sees it in terminal.
|
// Output on stdout so user sees it in terminal.
|
||||||
String message = "The HBase data files stored on the FileSystem are " +
|
String message = "The HBase data files stored on the FileSystem are " +
|
||||||
"from an earlier version of HBase. You need to run " +
|
"from an earlier version of HBase. You need to run " +
|
||||||
"'${HBASE_HOME}/bin/hbase migrate' to bring your installation +
|
"'${HBASE_HOME}/bin/hbase migrate' to bring your installation" +
|
||||||
"up-to-date.";
|
"up-to-date.";
|
||||||
System.out.println("WARNING! " + message + " Master shutting down...");
|
System.out.println("WARNING! " + message + " Master shutting down...");
|
||||||
throw new IOException(message);
|
throw new IOException(message);
|
||||||
|
|
Loading…
Reference in New Issue