fixed typo log message

This commit is contained in:
LesnyRumcajs
2020-05-12 10:49:08 +02:00
committed by GitHub
parent 006642cdb2
commit 14423bba40

View File

@@ -115,7 +115,7 @@ int main(int argc, char* argv[]) {
},
// Whenever EOF is reached on a partition, print this
[](ConsumerDispatcher::EndOfFile, const TopicPartition& topic_partition) {
cout << "Reched EOF on partition " << topic_partition << endl;
cout << "Reached EOF on partition " << topic_partition << endl;
}
);
}