diff options
| author | jason | 2019-01-15 17:01:32 -0700 |
|---|---|---|
| committer | jason | 2019-01-16 11:17:30 -0700 |
| commit | 0bed1a072d15ec01822b421bee51965a2d6910e7 (patch) | |
| tree | cbb01780f216ea9544a2452d7984da89b611b6d1 /setup.py | |
| parent | eedb40e2f1c6f3ba46518baba3401578ae20cf2b (diff) | |
| download | eventmq-0bed1a072d15ec01822b421bee51965a2d6910e7.tar.gz eventmq-0bed1a072d15ec01822b421bee51965a2d6910e7.zip | |
Scheduler: adds optional support for redis and specifying redis clientfeature/scheduler_redis_cluster_support
- allow optional support for running the scheduler without a redis
backend for persistent schedule storage. The default is to exit on
startup error. The user can set `redis_startup_error_hard_kill` to
false if they really want to run the scheduler with no backend db.
- allow users the ability to specify a redis client class. this will let
them use redis-cluster if they wish. They can install the appropriate
module and define `redis_client_class` (and if necessary class keyword
arguments via `redis_client_class_kwargs`).
Diffstat (limited to 'setup.py')
| -rw-r--r-- | setup.py | 1 |
1 files changed, 0 insertions, 1 deletions
| @@ -22,7 +22,6 @@ setup( | |||
| 22 | 'six==1.10.0', | 22 | 'six==1.10.0', |
| 23 | 'monotonic==0.4', | 23 | 'monotonic==0.4', |
| 24 | 'croniter==0.3.10', | 24 | 'croniter==0.3.10', |
| 25 | 'redis==2.10.3', | ||
| 26 | 'future==0.15.2', | 25 | 'future==0.15.2', |
| 27 | 'psutil==5.0.0', | 26 | 'psutil==5.0.0', |
| 28 | 'python-dateutil>=2.1,<3.0.0'], | 27 | 'python-dateutil>=2.1,<3.0.0'], |