MINOR: Remove reference to 'offset backing store' from exception message in KafkaBasedLog (#13810)

Reviewers: Chris Egerton <chrise@aiven.io>
This commit is contained in:
Yash Mayya 2023-06-05 15:04:17 +01:00 committed by GitHub
parent 8e60368d90
commit fca7ee7270
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -257,7 +257,7 @@ public class KafkaBasedLog<K, V> {
partitionInfos = consumer.partitionsFor(topic);
}
if (partitionInfos.isEmpty())
throw new ConnectException("Could not look up partition metadata for offset backing store topic in" +
throw new ConnectException("Could not look up partition metadata for topic '" + topic + "' in the" +
" allotted period. This could indicate a connectivity issue, unavailable topic partitions, or if" +
" this is your first use of the topic it may have taken too long to create.");