Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
alxgomz committed Oct 31, 2023
1 parent 7246c74 commit 496cf13
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ data:
-Ddb.url="$DATABASE_URL"
-Ddb.username=${DATABASE_USERNAME}
-Ddb.password=${DATABASE_PASSWORD}
-Ddb.driver="${DATABASE_DRIVER:-%s}"
-Ddb.driver="${DATABASE_DRIVER}"
-Dmessaging.broker.url="$BROKER_URL"
-Dmessaging.broker.username="$BROKER_USERNAME"
-Dmessaging.broker.password="$BROKER_PASSWORD"
Expand Down
2 changes: 1 addition & 1 deletion charts/alfresco-repository/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ spec:
- |
NCTARGET=$(echo DATABASE_URL | awk -F ';|/' '{print $3}')
if [[ "$NCTARGET" == *":"* ]]; then
until nc -vw1 $
until nc -vw1 $NCTARGET; do
sleep 2
done
else echo "No port in jdbc URL $DATABASE_URL. Can't guess it so skipping db status check"
Expand Down

0 comments on commit 496cf13

Please sign in to comment.