Skip to content
Merged
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: 2 additions & 0 deletions framework/.changeset/v0.16.5.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
- Bump the default Canton Splice image to 0.6.7
- Change Splice healthcheck to use wget instead of curl, as the latter is not available in the image anymore
2 changes: 1 addition & 1 deletion framework/components/blockchain/canton/canton.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import (

// Canton Defaults
const (
SpliceVersion = "0.6.3"
SpliceVersion = "0.6.7"
Image = "ghcr.io/digital-asset/decentralized-canton-sync/docker/canton"
)

Expand Down
8 changes: 4 additions & 4 deletions framework/components/blockchain/canton/splice.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,16 +23,16 @@ func getSpliceHealthCheckScript(numberOfValidators int) string {

set -eou pipefail

curl -f http://localhost:5012/api/scan/readyz
curl -f http://localhost:5014/api/sv/readyz
wget --no-verbose --tries=1 --spider http://localhost:5012/api/scan/readyz
wget --no-verbose --tries=1 --spider http://localhost:5014/api/sv/readyz

# SV
curl -f "http://localhost:${SPLICE_VALIDATOR_ADMIN_API_PORT_PREFIX}00/api/validator/readyz"
wget --no-verbose --tries=1 --spider "http://localhost:${SPLICE_VALIDATOR_ADMIN_API_PORT_PREFIX}00/api/validator/readyz"
`
for i := 1; i <= numberOfValidators; i++ {
script += fmt.Sprintf(`
# Participant %02[1]d
curl -f "http://localhost:${SPLICE_VALIDATOR_ADMIN_API_PORT_PREFIX}%02[1]d/api/validator/readyz"
wget --no-verbose --tries=1 --spider "http://localhost:${SPLICE_VALIDATOR_ADMIN_API_PORT_PREFIX}%02[1]d/api/validator/readyz"
`, i)
}

Expand Down
Loading