summaryrefslogtreecommitdiff
path: root/tests/test_client.py
Commit message (Collapse)AuthorAgeFilesLines
* remove Redis and ConnectionPool __eq__ comparisonAndy McCurdy2020-02-011-27/+0
| | | | | | | | | | | | | After further thought this was a bad idea. Just because two connection pools share the same connection arguments does not make them equal. It would seem quite odd if pool_a == pool_b yet pool_a.disconnect() doesn't close all of pool_b's connections. Ref #1240 Fixes #1277 Fixes #1275 Fixes #1267 Fixes #1273
* Add equality test on Redis client and conn pool (#1240)Rajiv Bakulesh Shah2019-11-111-0/+27
Add equality test on Redis client and connection pool