feat(chalice): changed health-check for EE
This commit is contained in:
parent
33f683225b
commit
4083da3e64
1 changed files with 2 additions and 1 deletions
|
|
@ -139,7 +139,8 @@ def get_health():
|
|||
"clickhouse": __check_database_ch
|
||||
},
|
||||
"ingestionPipeline": {
|
||||
**({"redis": __check_redis} if config("REDIS_STRING", default=None) is not None else {}),
|
||||
**({"redis": __check_redis} if config("REDIS_STRING", default=None) is not None
|
||||
and len(config("REDIS_STRING")) > 0 else {}),
|
||||
# "kafka": __check_kafka
|
||||
"kafka": __always_healthy
|
||||
},
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue