Skip to content
Draft
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
3 changes: 2 additions & 1 deletion framework/components/blockchain/canton/canton.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ package canton
import (
"fmt"
"strings"
"time"

"github.com/testcontainers/testcontainers-go"
"github.com/testcontainers/testcontainers-go/wait"
Expand Down Expand Up @@ -328,7 +329,7 @@ func ContainerRequest(
WaitingFor: wait.ForExec([]string{
"/bin/bash",
"/app/health-check.sh",
}),
}).WithStartupTimeout(time.Minute * 5),
Env: map[string]string{
"DB_SERVER": postgresContainerName,
"DB_USER": DefaultPostgresUser,
Expand Down
2 changes: 1 addition & 1 deletion framework/components/blockchain/canton/splice.go
Original file line number Diff line number Diff line change
Expand Up @@ -337,7 +337,7 @@ func SpliceContainerRequest(
WaitingFor: wait.ForExec([]string{
"/bin/bash",
"/app/health-check.sh",
}).WithStartupTimeout(time.Minute * 5),
}).WithStartupTimeout(time.Minute * 10),
Env: map[string]string{
"DB_SERVER": postgresContainerName,
"DB_USER": DefaultPostgresUser,
Expand Down
Loading