Fixing spelling error for Acquire timeout (#410)
This commit is contained in:
parent
131b1e4b0f
commit
d85d6f4187
1 changed files with 2 additions and 2 deletions
|
|
@ -52,7 +52,7 @@ import software.amazon.kinesis.retrieval.kpl.ExtendedSequenceNumber;
|
|||
@KinesisClientInternalApi
|
||||
public class FanOutRecordsPublisher implements RecordsPublisher {
|
||||
private static final ThrowableCategory ACQUIRE_TIMEOUT_CATEGORY = new ThrowableCategory(
|
||||
ThrowableType.ACUIRE_TIMEOUT);
|
||||
ThrowableType.ACQUIRE_TIMEOUT);
|
||||
private static final ThrowableCategory READ_TIMEOUT_CATEGORY = new ThrowableCategory(ThrowableType.READ_TIMEOUT);
|
||||
|
||||
private final KinesisAsyncClient kinesis;
|
||||
|
|
@ -201,7 +201,7 @@ public class FanOutRecordsPublisher implements RecordsPublisher {
|
|||
}
|
||||
|
||||
private enum ThrowableType {
|
||||
ACUIRE_TIMEOUT("AcquireTimeout"), READ_TIMEOUT("ReadTimeout"), OTHER("Other");
|
||||
ACQUIRE_TIMEOUT("AcquireTimeout"), READ_TIMEOUT("ReadTimeout"), OTHER("Other");
|
||||
|
||||
String value;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue