Skip to content
This repository has been archived by the owner on Jun 6, 2023. It is now read-only.

Commit

Permalink
keydb: 0.33.1: use regex as message can vary
Browse files Browse the repository at this point in the history
  • Loading branch information
Antiarchitect committed Mar 6, 2022
1 parent 69462e0 commit 6bb90ac
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion keydb/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v2
name: keydb
description: A Helm chart for KeyDB multimaster setup
type: application
version: 0.33.0
version: 0.33.1
keywords:
- keydb
- redis
Expand Down
2 changes: 1 addition & 1 deletion keydb/templates/cm-health.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ data:
-p "${REDIS_PORT}" \
ping
)"
if [ "${response}" != "PONG" ] && [ "${response}" != "LOADING Redis is loading the dataset in memory" ]; then
if [ "${response}" != "PONG" ] && [[ ! "${response}" =~ ^.*LOADING.*$ ]]; then
echo "${response}"
exit 1
fi
Expand Down

0 comments on commit 6bb90ac

Please sign in to comment.