Skip to content

Commit

Permalink
Fix incorrect timestamp unit in Producer docs (#384) (#385)
Browse files Browse the repository at this point in the history
  • Loading branch information
Ryan P committed May 24, 2018
1 parent 66a1814 commit f88c550
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion confluent_kafka/src/Producer.c
Expand Up @@ -505,7 +505,7 @@ static PyMethodDef Producer_methods[] = {
" :param func on_delivery(err,msg): Delivery report callback to call "
"(from :py:func:`poll()` or :py:func:`flush()`) on successful or "
"failed delivery\n"
" :param int timestamp: Message timestamp (CreateTime) in microseconds since epoch UTC (requires librdkafka >= v0.9.4, api.version.request=true, and broker >= 0.10.0.0). Default value is current time.\n"
" :param int timestamp: Message timestamp (CreateTime) in milliseconds since epoch UTC (requires librdkafka >= v0.9.4, api.version.request=true, and broker >= 0.10.0.0). Default value is current time.\n"
"\n"
" :rtype: None\n"
" :raises BufferError: if the internal producer message queue is "
Expand Down

0 comments on commit f88c550

Please sign in to comment.