Open siobhan-sterrett opened 2 months ago
Thank you for your submission! We really appreciate it. Like many open source projects, we ask that you sign our Contributor License Agreement before we can accept your contribution.
Thank you for your submission! We really appreciate it. Like many open source projects, we ask that you sign our Contributor License Agreement before we can accept your contribution.
I think this might touch some code I changed here https://github.com/confluentinc/confluent-kafka-python/pull/1591
But this project is not accepting PRs. It's annoying.
A handful of minor fixes to cimpl. Probably nothing that will impact real-life use-cases, since these are all buried inside
_AdminClientImpl
, but they were bothering me."topic_names"
and"future"
inkws
array inAdmin_describe_topics()
If a user tried to pass
topic_names
orfuture
into_AdminClientImpl.describe_topics()
as keyword arguments, they would end up swapped, which would lead to confusing errors.TypeError
inAdmin_list_consumer_group_offset()
ifrequest
is not a listTypeError
inAdmin_alter_consumer_group_offsets()
ifrequest
is not a listIn both of these cases, the library would raise
ValueError
ifrequest
was a list with anything other than 1 item... but ifrequest
wasn't a list, it would result in an internal error when it tried to access its first item.plist
inpy_to_c_parts()
to be instances of a subtype ofTopicPartition
If a user passed a list of instances of a subtype of
TopicPartition
, the library would raise aTypeError
, even if the instances were otherwise valid.