Skip to content

Update document #572

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 11, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion confluent_kafka/src/Consumer.c
Original file line number Diff line number Diff line change
Expand Up @@ -1236,7 +1236,8 @@ static PyMethodDef Consumer_methods[] = {
" :param bool cached: Instead of querying the broker used cached information. "
"Cached values: The low offset is updated periodically (if statistics.interval.ms is set) while "
"the high offset is updated on each message fetched from the broker for this partition.\n"
" :returns: Tuple of (low,high) on success or None on timeout.\n"
" :returns: Tuple of (low,high) on success or None on timeout. "
"The high offset is the offset of the last message + 1.\n"
" :rtype: tuple(int,int)\n"
" :raises: KafkaException\n"
" :raises: RuntimeError if called on a closed consumer\n"
Expand Down