beanstalkc is a simple beanstalkd client library for Python. Release 0.4.0 is a minor feature/bugfix release.
The official home of beanstalkc is on GitHub: - https://github.com/earl/beanstalkc beanstalkc can of course also be obtained via PyPI: - https://pypi.python.org/pypi/beanstalkc Release Summary --------------- beanstalkc 0.4.0 introduces the following changes: - Handling of the "kick-job" command introduced with beanstalkd 1.8 in 2012-11. (Initial implementation thanks to Github user "duyue".) - Proper handling of the "BURIED" and "DRAINING" beanstalkd error messages which can occur during #put() (thanks to Jens Rantil for the report, and to Aske Dørge for the fix). - Fixes a bug when trying to #close() a connection which was already closed by the server before that. (Thanks to Github user "yancl" for the report, and to Aske Dørge for the fix.) - Addition of a #reconnect() utility method which combines #close() and #connect() (thanks to Jeremy Carroll). 0.4.0 has no incompatible API changes compared to version 0.3.0. Full Changelog -------------- For your convenience, here's the full shortlog of commits for 0.4.0 over 0.3.0: Andreas Bolka (8): Rename Job.kick_job to Job.kick Fix doctest for Job.kick Minor documentation cleanups Also run "wip-travisci" branch via Travis CI Test with custom-built beanstalkd 1.8 on Travis CI Link from README to TUTORIAL Fix typo in tutorial Release beanstalkc 0.4.0 Aske Doerge (1): Changed expected responses and errors for put(..) Aske Dørge (1): Wrapped _socket.close in its own try-except. Hansel Dunlop (1): Corrects the stated default value for connect_timeout in the tutorial Jeremy Carroll (1): Added reconnect utility method Kyle Jones (1): Update docstring to accurately reflect protocol duyue (2): kick-job command kick-job requires beanstalkd >= v1.8 -- Regards, Andreas -- You received this message because you are subscribed to the Google Groups "beanstalk-talk" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/beanstalk-talk. For more options, visit https://groups.google.com/groups/opt_out.
