HBASE-22714 - Fix opertationTimeout typo (#392)

Signed-off-by: Duo Zhang <zhangduo@apache.org>
This commit is contained in:
Thanh NM 2019-07-30 23:57:06 +10:00 committed by Duo Zhang
parent 4a61c8b10a
commit 5ce31dd120
1 changed files with 9 additions and 0 deletions

View File

@ -70,6 +70,15 @@ public class BufferedMutatorParams implements Cloneable {
return rpcTimeout;
}
public BufferedMutatorParams operationTimeout(final int operationTimeout) {
this.operationTimeout = operationTimeout;
return this;
}
/**
* @deprecated Since 2.3.0, will be removed in 4.0.0. Use {@link #operationTimeout()}
*/
@Deprecated
public BufferedMutatorParams opertationTimeout(final int operationTimeout) {
this.operationTimeout = operationTimeout;
return this;