Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use health_check_interval #1172

Merged
merged 1 commit into from
Aug 4, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions gnocchi/common/redis.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@
CLIENT_ARGS = frozenset([
'db',
'encoding',
'health_check_interval',
'retry_on_timeout',
'socket_keepalive',
'socket_timeout',
Expand All @@ -62,6 +63,7 @@
#: Client arguments that are expected to be int convertible.
CLIENT_INT_ARGS = frozenset([
'db',
'health_check_interval',
'socket_keepalive',
'socket_timeout',
])
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ s3 =
boto3
botocore>=1.5
redis =
redis >= 3.2.0 # MIT
redis >= 3.3.0 # MIT
hiredis
swift =
python-swiftclient>=3.1.0
Expand Down