Skip to content
Open
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: 1 addition & 1 deletion charts/cadence/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apiVersion: v2
name: cadence
version: 1.1.0
version: 1.1.1
appVersion: v1.3.6

description: |
Expand Down
2 changes: 1 addition & 1 deletion charts/cadence/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# cadence

![Version: 1.1.0](https://img.shields.io/badge/Version-1.1.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v1.3.6](https://img.shields.io/badge/AppVersion-v1.3.6-informational?style=flat-square)
![Version: 1.1.1](https://img.shields.io/badge/Version-1.1.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v1.3.6](https://img.shields.io/badge/AppVersion-v1.3.6-informational?style=flat-square)

Cadence is a distributed, scalable, durable, and highly available orchestration engine
to execute asynchronous long-running business logic in a scalable and resilient way.
Expand Down
6 changes: 5 additions & 1 deletion charts/cadence/templates/server-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -338,7 +338,11 @@ spec:

# Wait for PostgreSQL to be ready
echo "Waiting for PostgreSQL to be ready..."
until pg_isready -h $DB_HOST -p $DB_PORT -U $DB_USER; do
until pg_isready -d "host=$DB_HOST \
port=$DB_PORT \
dbname=$DB_NAME \
user=$DB_USER \
sslmode=${SSL_MODE:-disable}"; do
echo 'PostgreSQL is not ready yet...'
sleep 5
done
Expand Down