chore: unquote db_type

Signed-off-by: Chinmay D. Pai <chinmaydpai@gmail.com>
This commit is contained in:
Chinmay D. Pai 2020-04-13 19:13:43 +05:30
parent a25088a606
commit 318e397ab3
No known key found for this signature in database
GPG key ID: 75507BE256F40CED

View file

@ -28,7 +28,7 @@ def check_database():
else:
db_host = "localhost"
db_port = 5342
return {"db_type": is_open(db_host, db_port)}
return {db_type: is_open(db_host, db_port)}
def check_redis(redis_services=None):