We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7dc72cd commit 8d64f6cCopy full SHA for 8d64f6c
framework/components/dockercompose/chip_ingress_set/chip_ingress.go
@@ -128,6 +128,8 @@ func New(in *Input) (*Output, error) {
128
wait.NewHostPortStrategy(DEFAULT_RED_PANDA_SCHEMA_REGISTRY_PORT).WithPollInterval(100*time.Millisecond),
129
wait.NewHostPortStrategy(DEFAULT_RED_PANDA_KAFKA_PORT).WithPollInterval(100*time.Millisecond),
130
wait.ForHTTP("/v1/status/ready").WithPort("9644"), // admin API port
131
+ // Critical: Use the official schema registry health endpoint
132
+ wait.ForHTTP("/status/ready").WithPort(DEFAULT_RED_PANDA_SCHEMA_REGISTRY_PORT).WithPollInterval(100*time.Millisecond),
133
).WithDeadline(2*time.Minute),
134
).WaitForService(DEFAULT_RED_PANDA_CONSOLE_SERVICE_NAME,
135
wait.ForAll(
0 commit comments