HBASE-25057: Fix typo memeber (#2414)

Signed-off-by: Viraj Jasani <vjasani@apache.org>
Signed-off-by: Duo Zhang <zhangduo@apache.org>
Signed-off-by: Jan Hentschel <jan.hentschel@ultratendency.com>
This commit is contained in:
Hyeran Lee 2020-09-19 15:36:06 +09:00 committed by GitHub
parent 16831ec515
commit 6371914adb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 8 additions and 8 deletions

View File

@ -116,7 +116,7 @@ public class LogRollRegionServerProcedureManager extends RegionServerProcedureMa
/**
* If in a running state, creates the specified subprocedure for handling a backup procedure.
* @return Subprocedure to submit to the ProcedureMemeber.
* @return Subprocedure to submit to the ProcedureMember.
*/
public Subprocedure buildSubprocedure(byte[] data) {
// don't run a backup if the parent is stop(ping)

View File

@ -39,7 +39,7 @@ import org.slf4j.LoggerFactory;
* member), {@link #insideBarrier()} (execute while globally barriered and release barrier) and
* {@link #cleanup(Exception)} (release state associated with subprocedure.)
*
* When submitted to a ProcedureMemeber, the call method is executed in a separate thread.
* When submitted to a ProcedureMember, the call method is executed in a separate thread.
* Latches are use too block its progress and trigger continuations when barrier conditions are
* met.
*
@ -147,7 +147,7 @@ abstract public class Subprocedure implements Callable<Void> {
* Execute the Subprocedure {@link #acquireBarrier()} and {@link #insideBarrier()} methods
* while keeping some state for other threads to access.
*
* This would normally be executed by the ProcedureMemeber when a acquire message comes from the
* This would normally be executed by the ProcedureMember when a acquire message comes from the
* coordinator. Rpcs are used to spend message back to the coordinator after different phases
* are executed. Any exceptions caught during the execution (except for InterruptedException) get
* converted and propagated to coordinator via {@link ProcedureMemberRpcs#sendMemberAborted(

View File

@ -132,7 +132,7 @@ public class RegionServerFlushTableProcedureManager extends RegionServerProcedur
*
* @param table
* @param family
* @return Subprocedure to submit to the ProcedureMemeber.
* @return Subprocedure to submit to the ProcedureMember.
*/
public Subprocedure buildSubprocedure(String table, String family) {

View File

@ -150,7 +150,7 @@ public class RegionServerSnapshotManager extends RegionServerProcedureManager {
* the snapshot verification step.
*
* @param snapshot
* @return Subprocedure to submit to the ProcedureMemeber.
* @return Subprocedure to submit to the ProcedureMember.
*/
public Subprocedure buildSubprocedure(SnapshotDescription snapshot) {

View File

@ -85,7 +85,7 @@ public class SimpleRSProcedureManager extends RegionServerProcedureManager {
/**
* If in a running state, creates the specified subprocedure for handling a procedure.
* @return Subprocedure to submit to the ProcedureMemeber.
* @return Subprocedure to submit to the ProcedureMember.
*/
public Subprocedure buildSubprocedure(String name) {

View File

@ -204,7 +204,7 @@ public class TestProcedureMember {
new Answer<Void>() {
@Override
public Void answer(InvocationOnMock invocation) throws Throwable {
throw new IOException("Forced IOException in memeber prepare");
throw new IOException("Forced IOException in member prepare");
}
}).when(mockMemberComms).sendMemberAcquired(any());
@ -288,7 +288,7 @@ public class TestProcedureMember {
new Answer<Void>() {
@Override
public Void answer(InvocationOnMock invocation) throws Throwable {
throw new IOException("Forced IOException in memeber prepare");
throw new IOException("Forced IOException in member prepare");
}
}).when(spySub).insideBarrier();