| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | feat(test): Move to pytest | Charles-Henri de Boysson | 2020-04-14 | 1 | -1/+1 |
| | | |||||
| * | fix(core): allow requests to be queued in CONNECTING state (#374) (#588) | Damien Diederen | 2020-03-09 | 1 | -0/+21 |
| | | | | | | | | | | | | | | | With this patch, requests issued while the client is in the 'CONNECTING' state get queued instead of raising a misleading 'SessionExpiredError'. This fixes https://github.com/python-zk/kazoo/issues/374, and brings Kazoo more in line with the Java and C clients. See the 'kazoo.client.KazooClient.state' documentation as well as these discussions for more details: https://github.com/python-zk/kazoo/pull/570#issuecomment-554798550 https://github.com/python-zk/kazoo/pull/583#issuecomment-586422386 | ||||
| * | style(Makefile): add self-documenting make targets (#531) | Derek | 2018-10-26 | 1 | -21/+22 |
| | | |||||
| * | docs(core): fix broken zookeeper programmers guide link | Nakul Pathak | 2018-10-08 | 1 | -1/+1 |
| | | |||||
| * | docs: Correctly document supported versionscorrect-supported-versions-in-readme | Jeff Widman | 2017-11-02 | 1 | -2/+2 |
| | | | | | | Gevent support < 1.2 was dropped in https://github.com/python-zk/kazoo/commit/2e8dcd3836d01640f07e8de911cdfb3639f97d20 (and further tweaked in https://github.com/python-zk/kazoo/pull/483). Travis already tests the Zookeeper 3.5 series. | ||||
| * | chore: remove `easy_install` instructionsjeffwidman-remove-easy-install | Jeff Widman | 2017-07-23 | 1 | -1/+1 |
| | | | | | Everyone uses `pip` these days | ||||
| * | feat(recipe): Add TreeCache recipe | Jiangge Zhang | 2017-06-13 | 2 | -0/+27 |
| | | | | | | Kazoo implementation of Apache Curator's TreeCache recipe. See also: http://curator.apache.org/curator-recipes/tree-cache.html | ||||
| * | Revert "New recipe proposal: TreeCache" | Ben Bangert | 2017-05-31 | 2 | -27/+0 |
| | | |||||
| * | Merge pull request #398 from tonyseek/feature/treecache-recipe | Ben Bangert | 2017-05-31 | 2 | -0/+27 |
| |\ | | | | | New recipe proposal: TreeCache | ||||
| | * | Implement and test the TreeCache recipe. | Jiangge Zhang | 2016-06-23 | 2 | -0/+27 |
| | | | |||||
| * | | Convert read/write locks into classes | James E. Blair | 2017-03-10 | 1 | -0/+12 |
| |/ | | | | | | | Replace the RLock and WLock functions with subclasses of Lock: ReadLock and WriteLock. Add those to the client class for convenience. Restore the function signature of the Lock class initializer. Add tests for shared locks. Add to API docs. | ||||
| * | Simplify version number import in docs | Łukasz Jernaś | 2015-08-06 | 1 | -6/+2 |
| | | |||||
| * | Automatically generate the version number for docs | Łukasz Jernaś | 2015-08-05 | 1 | -3/+9 |
| | | | | | | Reuse the code from setup.py to generate the proper version number for the Sphinx documentation. | ||||
| * | Add lease recipe. | Lars Albertsson | 2015-03-21 | 2 | -0/+20 |
| | | |||||
| * | Add new eventlet docs + a few other tweaks to the index.rst | Joshua Harlow | 2015-02-13 | 3 | -8/+31 |
| | | | | | | | Explain what the new eventlet handler is and how it can be used (with api docs as well) and links some of the items in index.rst to targets (and makes the irc link clickable). | ||||
| * | Update docs to reflect where support questions should be asked. | Ben Bangert | 2014-09-23 | 1 | -2/+2 |
| | | |||||
| * | Removed all references to pipes and turned into sockets to enable Windows ↵ | Ewan Kirk | 2014-09-02 | 1 | -1/+1 |
| | | | | | support | ||||
| * | vb | Hanno Schlichting | 2014-06-19 | 1 | -1/+1 |
| | | |||||
| * | prepare release2.0 | Hanno Schlichting | 2014-06-19 | 1 | -3/+3 |
| | | |||||
| * | Tweak Zake description and add changelog entry, closes #198. | Hanno Schlichting | 2014-06-06 | 1 | -12/+9 |
| | | |||||
| * | Merge pull request #200 from harlowja/master | Hanno Schlichting | 2014-06-06 | 1 | -0/+16 |
| |\ | | | | | Add docs for kazoo + zake usage for those that are interested | ||||
| | * | Add docs for kazoo + zake usage for those that are interested | Joshua Harlow | 2014-05-07 | 1 | -0/+16 |
| | | | | | | | | | | | | | | | | | Add a description and link to the zake library (and its repo) for those that want to test kazoo client-level functionality without having to setup a full zookeeper runtime to accomplish this. Part of #198 | ||||
| * | | Add changelog entry for #181/#202. | Hanno Schlichting | 2014-06-06 | 1 | -4/+5 |
| | | | | | | | | | Also change the link to have a descriptive name instead of `here`. | ||||
| * | | Merge pull request #202 from abhirajbutala/patch-1 | Hanno Schlichting | 2014-06-06 | 1 | -0/+21 |
| |\ \ | | | | | | | Update basic_usage.rst and mention logging setup. | ||||
| | * | | Update basic_usage.rst | Abhiraj Butala | 2014-05-08 | 1 | -0/+21 |
| | |/ | | | | | Added documentation for the optional logging setup needed for the clients. | ||||
| * | | Add lost colon | Maxim Mitroshin | 2014-05-13 | 1 | -1/+1 |
| |/ | |||||
| * | It's awfully hard to render documents I forgot to check in. | Ben Bangert | 2014-04-22 | 1 | -0/+1 |
| | | |||||
| * | Add contributing to the sphinx doc build. | Ben Bangert | 2014-04-21 | 1 | -0/+1 |
| | | |||||
| * | Merge pull request #180 from python-zk/133-testing-cluster-ports | Ben Bangert | 2014-03-14 | 1 | -0/+4 |
| |\ | | | | | Allow easier customization of the testing cluster port range, closes #133 | ||||
| | * | Allow easier customization of the testing cluster port range, closes #133.133-testing-cluster-ports | Hanno Schlichting | 2014-03-14 | 1 | -0/+4 |
| | | | |||||
| * | | Remove zope.interface dependency, closes #131. | Hanno Schlichting | 2014-03-14 | 2 | -3/+2 |
| |/ | |||||
| * | vb | Hanno Schlichting | 2013-09-25 | 1 | -2/+2 |
| | | |||||
| * | prepare1.3.1 | Hanno Schlichting | 2013-09-25 | 1 | -2/+2 |
| | | |||||
| * | stop calling out companies and mention large number of contributors instead | Hanno Schlichting | 2013-09-25 | 1 | -5/+2 |
| | | |||||
| * | Merge pull request #114 from spladug/autodoc-sys.path | Hanno Schlichting | 2013-09-11 | 1 | -1/+2 |
| |\ | | | | | sphinx: Configure sys.path to allow autodoc to find Kazoo. | ||||
| | * | sphinx: Configure sys.path to allow autodoc to find Kazoo. | Neil Williams | 2013-08-25 | 1 | -1/+2 |
| | | | | | | | | | | | | | | | | | | | | | Previously, if Kazoo wasn't already in sys.path otherwise (e.g. if not installed) sphinx autodoc wouldn't be able to find the module for documenting purposes because sphinx-build happens in an adjacent subdirectory. This adds the docs folder's parent to the path so that autodoc can find the Kazoo module properly and do its stuff. | ||||
| * | | vb | Hanno Schlichting | 2013-09-05 | 1 | -2/+2 |
| |/ | |||||
| * | vb | Hanno Schlichting | 2013-08-01 | 1 | -2/+2 |
| | | |||||
| * | prepare1.2.1 | Hanno Schlichting | 2013-08-01 | 1 | -2/+2 |
| | | |||||
| * | vb | Hanno Schlichting | 2013-07-24 | 1 | -2/+2 |
| | | |||||
| * | document new `unittest.TestCase` base class for KazooTestHarness | Hanno Schlichting | 2013-07-23 | 1 | -3/+1 |
| | | |||||
| * | doc tweaks | Hanno Schlichting | 2013-07-23 | 3 | -1/+9 |
| | | |||||
| * | - Issue #62, #92, #89, #101, #102: Allow KazooRetry to have a | Ben Bangert | 2013-07-16 | 1 | -6/+0 |
| | | | | | | | max deadline, transition properly when connection fails to LOST, and setup separate connection retry behavior from client command retry behavior. Patches by Mike Lundy. | ||||
| * | vb | Hanno Schlichting | 2013-06-08 | 1 | -2/+2 |
| | | |||||
| * | brush up lock docs a bit | Hanno Schlichting | 2013-06-08 | 1 | -0/+2 |
| | | |||||
| * | add changelog entry for #76 | Hanno Schlichting | 2013-05-14 | 1 | -2/+2 |
| | | |||||
| * | Allow a forced override of ManagedZooKeeper's classpath | Mike Lundy | 2013-04-30 | 1 | -0/+4 |
| | | |||||
| * | correct name of new utils docs file | Hanno Schlichting | 2013-04-29 | 2 | -5/+5 |
| | | |||||
| * | Add docs for util handlers. | Ben Bangert | 2013-04-28 | 2 | -0/+19 |
| | | |||||
| * | vb | Hanno Schlichting | 2013-03-26 | 1 | -2/+2 |
| | | |||||
