<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/kafka-python.git/test/test_client.py, branch async_producer_stop</title>
<subtitle>github.com: mumrah/kafka-python.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/kafka-python.git/'/>
<entry>
<title>Make external API consistently support python3 strings for topic.</title>
<updated>2015-04-03T17:23:39+00:00</updated>
<author>
<name>Space</name>
<email>space@wibidata.com</email>
</author>
<published>2015-03-31T22:25:38+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/kafka-python.git/commit/?id=1c856e8400e1c4fe6dccd562fbcf4d1bde38755d'/>
<id>1c856e8400e1c4fe6dccd562fbcf4d1bde38755d</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add test for correlation_id rollover</title>
<updated>2015-03-30T01:52:12+00:00</updated>
<author>
<name>Dana Powers</name>
<email>dana.powers@rd.io</email>
</author>
<published>2015-03-30T01:52:12+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/kafka-python.git/commit/?id=1313388662d509ade01f71d0740cd0efe263c01f'/>
<id>1313388662d509ade01f71d0740cd0efe263c01f</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Use reflection to avoid multiple errno definitions</title>
<updated>2015-01-11T02:57:36+00:00</updated>
<author>
<name>Alex Couture-Beil</name>
<email>alex@mofo.ca</email>
</author>
<published>2015-01-10T00:34:59+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/kafka-python.git/commit/?id=01c1481248a00367b9395acb364821026bf6848c'/>
<id>01c1481248a00367b9395acb364821026bf6848c</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #223 from dpkp/metadata_refactor</title>
<updated>2014-09-08T20:17:43+00:00</updated>
<author>
<name>Dana Powers</name>
<email>dana.powers@rd.io</email>
</author>
<published>2014-09-08T20:15:56+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/kafka-python.git/commit/?id=fff812ddc80243208233f785b3f005904cf33482'/>
<id>fff812ddc80243208233f785b3f005904cf33482</id>
<content type='text'>
Metadata Refactor

* add MetadataRequest and MetadataResponse namedtuples
* add TopicMetadata namedtuple
* add error codes to Topic and Partition Metadata
* add KafkaClient.send_metadata_request() method
* KafkaProtocol.decode_metadata_response changed to return a
  MetadataResponse object so that it is consistent with server api:
  [broker_list, topic_list]
* raise server exceptions in load_metadata_for_topics(*topics)
  unless topics is null (full refresh)
* Replace non-standard exceptions (LeaderUnavailable,
  PartitionUnavailable) with server standard exceptions
  (LeaderNotAvailableError, UnknownTopicOrPartitionError)

Conflicts:
	kafka/client.py
	test/test_client.py
	test/test_producer_integration.py
	test/test_protocol.py
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Metadata Refactor

* add MetadataRequest and MetadataResponse namedtuples
* add TopicMetadata namedtuple
* add error codes to Topic and Partition Metadata
* add KafkaClient.send_metadata_request() method
* KafkaProtocol.decode_metadata_response changed to return a
  MetadataResponse object so that it is consistent with server api:
  [broker_list, topic_list]
* raise server exceptions in load_metadata_for_topics(*topics)
  unless topics is null (full refresh)
* Replace non-standard exceptions (LeaderUnavailable,
  PartitionUnavailable) with server standard exceptions
  (LeaderNotAvailableError, UnknownTopicOrPartitionError)

Conflicts:
	kafka/client.py
	test/test_client.py
	test/test_producer_integration.py
	test/test_protocol.py
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #227 from wizzat-feature/py3</title>
<updated>2014-09-08T02:09:32+00:00</updated>
<author>
<name>Dana Powers</name>
<email>dana.powers@rd.io</email>
</author>
<published>2014-09-08T01:52:05+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/kafka-python.git/commit/?id=715425c639a476139065689afde3d255a07d6f96'/>
<id>715425c639a476139065689afde3d255a07d6f96</id>
<content type='text'>
Python 3 Support

Conflicts:
	kafka/producer.py
	test/test_client.py
	test/test_client_integration.py
	test/test_codec.py
	test/test_consumer.py
	test/test_consumer_integration.py
	test/test_failover_integration.py
	test/test_producer.py
	test/test_producer_integration.py
	test/test_protocol.py
	test/test_util.py
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Python 3 Support

Conflicts:
	kafka/producer.py
	test/test_client.py
	test/test_client_integration.py
	test/test_codec.py
	test/test_consumer.py
	test/test_consumer_integration.py
	test/test_failover_integration.py
	test/test_producer.py
	test/test_producer_integration.py
	test/test_protocol.py
	test/test_util.py
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix test errors related to mocks</title>
<updated>2014-09-03T17:56:22+00:00</updated>
<author>
<name>Mark Roberts</name>
<email>wizzat@fb.com</email>
</author>
<published>2014-09-03T17:56:22+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/kafka-python.git/commit/?id=e889c8aef01e9a0b0fc55c433314041ad3dccb2a'/>
<id>e889c8aef01e9a0b0fc55c433314041ad3dccb2a</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Make all unit tests pass on py3.3/3.4</title>
<updated>2014-09-03T16:55:44+00:00</updated>
<author>
<name>Bruno Renié</name>
<email>brutasse@gmail.com</email>
</author>
<published>2014-08-28T18:50:20+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/kafka-python.git/commit/?id=cf0b7f0530e765f2cf710bd35daf53bb4ea205d2'/>
<id>cf0b7f0530e765f2cf710bd35daf53bb4ea205d2</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Use base unittest or unittest2 depending on python version</title>
<updated>2014-09-03T16:55:44+00:00</updated>
<author>
<name>Bruno Renié</name>
<email>brutasse@gmail.com</email>
</author>
<published>2014-08-28T12:40:01+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/kafka-python.git/commit/?id=83af5102e995e854a1980b90f1400afdd098da37'/>
<id>83af5102e995e854a1980b90f1400afdd098da37</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add client unit tests for has_metadata_for_topic and ensure_topic_exists</title>
<updated>2014-09-02T01:04:10+00:00</updated>
<author>
<name>Dana Powers</name>
<email>dana.powers@rd.io</email>
</author>
<published>2014-09-02T01:03:52+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/kafka-python.git/commit/?id=0dabb1fbe8a9f538527a03c2903475ed77a12c10'/>
<id>0dabb1fbe8a9f538527a03c2903475ed77a12c10</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add test for sending produce request to unknown topic w/o auto-creation</title>
<updated>2014-09-02T01:04:10+00:00</updated>
<author>
<name>Dana Powers</name>
<email>dana.powers@rd.io</email>
</author>
<published>2014-09-02T00:06:15+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/kafka-python.git/commit/?id=d15a52cab28aa32274a27e4af86acf3f34c2092a'/>
<id>d15a52cab28aa32274a27e4af86acf3f34c2092a</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
