Skip to content

Commit eb700db

Browse files
thanh-nmApache9
authored andcommitted
HBASE-22714 - Fix opertationTimeout typo (#392)
Signed-off-by: Duo Zhang <[email protected]>
1 parent 300f906 commit eb700db

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

hbase-client/src/main/java/org/apache/hadoop/hbase/client/BufferedMutatorParams.java

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,15 @@ public int getRpcTimeout() {
7070
return rpcTimeout;
7171
}
7272

73+
public BufferedMutatorParams operationTimeout(final int operationTimeout) {
74+
this.operationTimeout = operationTimeout;
75+
return this;
76+
}
77+
78+
/**
79+
* @deprecated Since 2.3.0, will be removed in 4.0.0. Use {@link #operationTimeout()}
80+
*/
81+
@Deprecated
7382
public BufferedMutatorParams opertationTimeout(final int operationTimeout) {
7483
this.operationTimeout = operationTimeout;
7584
return this;

0 commit comments

Comments
 (0)