Fix warning message typos (#956)

Same as #875
This commit is contained in:
Ben Iofel 2023-01-31 18:26:14 -05:00 committed by GitHub
parent 28cb185e9c
commit 0535193394
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -200,11 +200,11 @@ class ShardConsumerSubscriber implements Subscriber<RecordsRetrieved> {
protected void logOnErrorReadTimeoutWarning(Throwable t) {
log.warn("{}: onError(). Cancelling subscription, and marking self as failed. KCL will"
+ " recreate the subscription as neccessary to continue processing. If you "
+ "are seeing this warning frequently consider increasing the SDK timeouts "
+ "by providing an OverrideConfiguration to the kinesis client. Alternatively you"
+ "can configure LifecycleConfig.readTimeoutsToIgnoreBeforeWarning to suppress"
+ "intermittent ReadTimeout warnings. Last successful request details -- {}",
+ " recreate the subscription as necessary to continue processing. If you"
+ " are seeing this warning frequently consider increasing the SDK timeouts"
+ " by providing an OverrideConfiguration to the kinesis client. Alternatively you"
+ " can configure LifecycleConfig.readTimeoutsToIgnoreBeforeWarning to suppress"
+ " intermittent ReadTimeout warnings. Last successful request details -- {}",
shardInfoId, recordsPublisher.getLastSuccessfulRequestDetails(), t);
}