diff options
| author | Tobias Urdin <tobias.urdin@binero.com> | 2022-09-28 12:21:46 +0200 |
|---|---|---|
| committer | Tobias Urdin <tobias.urdin@binero.com> | 2022-09-29 08:37:05 +0000 |
| commit | 4ff2d00178c1c5f3fe65c0ba6b0986df618cab78 (patch) | |
| tree | f58386d2ebb31e527299d540bb9b77cadf25b8fa /taskflow/tests/utils.py | |
| parent | 4bd0ab33272064cc4e44fe2d652ecf7a11b07274 (diff) | |
| download | taskflow-4ff2d00178c1c5f3fe65c0ba6b0986df618cab78.tar.gz | |
Change StrictRedis usage to Redis
The StrictRedis class is only an alias for
Redis in >= 3.0.0
Change-Id: Ief27531f120a50805053c214cb61bb4151678d70
Diffstat (limited to 'taskflow/tests/utils.py')
| -rw-r--r-- | taskflow/tests/utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/taskflow/tests/utils.py b/taskflow/tests/utils.py index 58cd9ab..bbd4678 100644 --- a/taskflow/tests/utils.py +++ b/taskflow/tests/utils.py @@ -78,7 +78,7 @@ def zookeeper_available(min_version, timeout=3): def redis_available(min_version): - client = redis.StrictRedis() + client = redis.Redis() try: client.ping() except Exception: |
