mirror of https://github.com/apache/kafka.git
MINOR: Remove reference to 'offset backing store' from exception message in KafkaBasedLog (#13810)
Reviewers: Chris Egerton <chrise@aiven.io>
This commit is contained in:
parent
8e60368d90
commit
fca7ee7270
|
@ -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.");
|
||||
|
||||
|
|
Loading…
Reference in New Issue