HBASE-22962 Fix typo in javadoc description (#569)
Signed-off-by: Duo Zhang <zhangduo@apache.org>
This commit is contained in:
parent
b642ee0418
commit
97fbaa658e
|
@ -535,7 +535,7 @@ public final class BackupUtils {
|
|||
}
|
||||
|
||||
/**
|
||||
* Return the 'path' component of a Path. In Hadoop, Path is an URI. This method returns the
|
||||
* Return the 'path' component of a Path. In Hadoop, Path is a URI. This method returns the
|
||||
* 'path' component of a Path's URI: e.g. If a Path is
|
||||
* <code>hdfs://example.org:9000/hbase_trunk/TestTable/compaction.dir</code>, this method returns
|
||||
* <code>/hbase_trunk/TestTable/compaction.dir</code>. This method is useful if you want to print
|
||||
|
|
|
@ -337,7 +337,7 @@ public abstract class CommonFSUtils {
|
|||
}
|
||||
|
||||
/**
|
||||
* Return the 'path' component of a Path. In Hadoop, Path is an URI. This
|
||||
* Return the 'path' component of a Path. In Hadoop, Path is a URI. This
|
||||
* method returns the 'path' component of a Path's URI: e.g. If a Path is
|
||||
* <code>hdfs://example.org:9000/hbase_trunk/TestTable/compaction.dir</code>,
|
||||
* this method returns <code>/hbase_trunk/TestTable/compaction.dir</code>.
|
||||
|
|
|
@ -119,7 +119,7 @@ public class JMXJsonServlet extends HttpServlet {
|
|||
/**
|
||||
* If query string includes 'description', then we will emit bean and attribute descriptions to
|
||||
* output IFF they are not null and IFF the description is not the same as the attribute name:
|
||||
* i.e. specify an URL like so: /jmx?description=true
|
||||
* i.e. specify a URL like so: /jmx?description=true
|
||||
*/
|
||||
private static final String INCLUDE_DESCRIPTION = "description";
|
||||
|
||||
|
|
|
@ -89,7 +89,7 @@ public class TestGlobalFilter extends HttpServerFunctionalTest {
|
|||
public void testServletFilter() throws Exception {
|
||||
Configuration conf = new Configuration();
|
||||
|
||||
//start a http server with CountingFilter
|
||||
//start an http server with CountingFilter
|
||||
conf.set(HttpServer.FILTER_INITIALIZERS_PROPERTY,
|
||||
RecordingFilter.Initializer.class.getName());
|
||||
HttpServer http = createTestServer(conf);
|
||||
|
|
|
@ -89,7 +89,7 @@ public class TestPathFilter extends HttpServerFunctionalTest {
|
|||
public void testPathSpecFilters() throws Exception {
|
||||
Configuration conf = new Configuration();
|
||||
|
||||
//start a http server with CountingFilter
|
||||
//start an http server with CountingFilter
|
||||
conf.set(HttpServer.FILTER_INITIALIZERS_PROPERTY,
|
||||
RecordingFilter.Initializer.class.getName());
|
||||
String[] pathSpecs = { "/path", "/path/*" };
|
||||
|
|
|
@ -101,7 +101,7 @@ public class TestServletFilter extends HttpServerFunctionalTest {
|
|||
public void testServletFilter() throws Exception {
|
||||
Configuration conf = new Configuration();
|
||||
|
||||
//start a http server with CountingFilter
|
||||
//start an http server with CountingFilter
|
||||
conf.set(HttpServer.FILTER_INITIALIZERS_PROPERTY,
|
||||
SimpleFilter.Initializer.class.getName());
|
||||
HttpServer http = createTestServer(conf);
|
||||
|
@ -163,7 +163,7 @@ public class TestServletFilter extends HttpServerFunctionalTest {
|
|||
@Test
|
||||
public void testServletFilterWhenInitThrowsException() throws Exception {
|
||||
Configuration conf = new Configuration();
|
||||
// start a http server with ErrorFilter
|
||||
// start an http server with ErrorFilter
|
||||
conf.set(HttpServer.FILTER_INITIALIZERS_PROPERTY,
|
||||
ErrorFilter.Initializer.class.getName());
|
||||
HttpServer http = createTestServer(conf);
|
||||
|
|
|
@ -107,7 +107,7 @@ public class TestLogLevel {
|
|||
setupSSL(BASEDIR);
|
||||
|
||||
kdc = setupMiniKdc();
|
||||
// Create two principles: a client and a HTTP principal
|
||||
// Create two principles: a client and an HTTP principal
|
||||
kdc.createPrincipal(KEYTAB_FILE, clientPrincipal, HTTP_PRINCIPAL);
|
||||
}
|
||||
|
||||
|
@ -407,7 +407,7 @@ public class TestLogLevel {
|
|||
try {
|
||||
testDynamicLogLevel(LogLevel.PROTOCOL_HTTP, LogLevel.PROTOCOL_HTTPS,
|
||||
false);
|
||||
fail("A HTTPS Client should not have succeeded in connecting to a " +
|
||||
fail("An HTTPS Client should not have succeeded in connecting to a " +
|
||||
"HTTP server");
|
||||
} catch (SSLException e) {
|
||||
exceptionShouldContains("Unrecognized SSL message", e);
|
||||
|
@ -426,7 +426,7 @@ public class TestLogLevel {
|
|||
try {
|
||||
testDynamicLogLevel(LogLevel.PROTOCOL_HTTP, LogLevel.PROTOCOL_HTTPS,
|
||||
true);
|
||||
fail("A HTTPS Client should not have succeeded in connecting to a " +
|
||||
fail("An HTTPS Client should not have succeeded in connecting to a " +
|
||||
"HTTP server");
|
||||
} catch (SSLException e) {
|
||||
exceptionShouldContains("Unrecognized SSL message", e);
|
||||
|
@ -446,7 +446,7 @@ public class TestLogLevel {
|
|||
try {
|
||||
testDynamicLogLevel(LogLevel.PROTOCOL_HTTPS, LogLevel.PROTOCOL_HTTP,
|
||||
false);
|
||||
fail("A HTTP Client should not have succeeded in connecting to a " +
|
||||
fail("An HTTP Client should not have succeeded in connecting to a " +
|
||||
"HTTPS server");
|
||||
} catch (SocketException e) {
|
||||
exceptionShouldContains("Unexpected end of file from server", e);
|
||||
|
@ -466,7 +466,7 @@ public class TestLogLevel {
|
|||
try {
|
||||
testDynamicLogLevel(LogLevel.PROTOCOL_HTTPS, LogLevel.PROTOCOL_HTTP,
|
||||
true);
|
||||
fail("A HTTP Client should not have succeeded in connecting to a " +
|
||||
fail("An HTTP Client should not have succeeded in connecting to a " +
|
||||
"HTTPS server");
|
||||
} catch (SocketException e) {
|
||||
exceptionShouldContains("Unexpected end of file from server", e);
|
||||
|
|
|
@ -29,7 +29,7 @@ import org.apache.http.Header;
|
|||
import org.apache.http.HttpResponse;
|
||||
|
||||
/**
|
||||
* The HTTP result code, response headers, and body of a HTTP response.
|
||||
* The HTTP result code, response headers, and body of an HTTP response.
|
||||
*/
|
||||
@InterfaceAudience.Public
|
||||
public class Response {
|
||||
|
|
|
@ -40,7 +40,7 @@ public class CacheableDeserializerIdManager {
|
|||
|
||||
/**
|
||||
* Register the given {@link Cacheable} -- usually an hfileblock instance, these implement
|
||||
* the Cacheable Interface -- deserializer and generate an unique identifier id for it and return
|
||||
* the Cacheable Interface -- deserializer and generate a unique identifier id for it and return
|
||||
* this as our result.
|
||||
* @return the identifier of given cacheable deserializer
|
||||
* @see #getDeserializer(int)
|
||||
|
|
|
@ -465,7 +465,7 @@ public class HMaster extends HRegionServer implements MasterServices {
|
|||
redirectHost = request.getServerName();
|
||||
if(!Addressing.isLocalAddress(InetAddress.getByName(redirectHost))) {
|
||||
LOG.warn("Couldn't resolve '" + redirectHost + "' as an address local to this node and '" +
|
||||
MASTER_HOSTNAME_KEY + "' is not set; client will get a HTTP 400 response. If " +
|
||||
MASTER_HOSTNAME_KEY + "' is not set; client will get an HTTP 400 response. If " +
|
||||
"your HBase deployment relies on client accessible names that the region server process " +
|
||||
"can't resolve locally, then you should set the previously mentioned configuration variable " +
|
||||
"to an appropriate hostname.");
|
||||
|
|
|
@ -104,7 +104,7 @@ public class ReplicationSyncUp extends Configured implements Tool {
|
|||
ZKWatcher zkw;
|
||||
|
||||
DummyServer(ZKWatcher zkw) {
|
||||
// an unique name in case the first run fails
|
||||
// a unique name in case the first run fails
|
||||
hostname = System.currentTimeMillis() + ".SyncUpTool.replication.org";
|
||||
this.zkw = zkw;
|
||||
}
|
||||
|
|
|
@ -59,7 +59,7 @@ public abstract class GenericTestUtils {
|
|||
|
||||
/**
|
||||
* Generates a process-wide unique sequence number.
|
||||
* @return an unique sequence number
|
||||
* @return a unique sequence number
|
||||
*/
|
||||
public static int uniqueSequenceId() {
|
||||
return sequence.incrementAndGet();
|
||||
|
|
|
@ -324,7 +324,7 @@ public class ThriftServer extends Configured implements Tool {
|
|||
}
|
||||
|
||||
/**
|
||||
* Setup a HTTP Server using Jetty to serve calls from THttpClient
|
||||
* Setup an HTTP Server using Jetty to serve calls from THttpClient
|
||||
*
|
||||
* @throws IOException IOException
|
||||
*/
|
||||
|
|
|
@ -168,7 +168,7 @@ public class TestThriftConnection {
|
|||
httpPort = HBaseTestingUtility.randomFreePort();
|
||||
// Start a thrift server
|
||||
thriftServer = startThriftServer(thriftPort, false);
|
||||
// Start a HTTP thrift server
|
||||
// Start an HTTP thrift server
|
||||
thriftHttpServer = startThriftServer(httpPort, true);
|
||||
thriftConnection = createConnection(thriftPort, false);
|
||||
thriftHttpConnection = createConnection(httpPort, true);
|
||||
|
|
Loading…
Reference in New Issue