You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Changing Testcontainers dapr service readiness checks from console log evaluation to health API endpoints (#1705)
* Changed wait readiness strategy from console logs to Health API endpoints for each service
* Placement and Scheduler are coming online and testing accurately now
* Successfully tested the daprd container coming online and testing via probes
* Added 2 minute timeout to container readiness
* Adding 10 minute timeout to integration tests
* Reverting to use console message for daprd
---------
Signed-off-by: Whit Waldo <whit.waldo@innovian.net>
containerBuilder=daprHttpPortis not null?containerBuilder.WithPortBinding(containerPort:InternalHttpPort,hostPort:daprHttpPort.Value):containerBuilder.WithPortBinding(port:InternalHttpPort,assignRandomHostPort:true);
145
-
containerBuilder=daprGrpcPortis not null?containerBuilder.WithPortBinding(containerPort:InternalGrpcPort,hostPort:daprGrpcPort.Value):containerBuilder.WithPortBinding(port:InternalGrpcPort,assignRandomHostPort:true);
155
+
containerBuilder=daprHttpPortis not null?containerBuilder.WithPortBinding(containerPort:InternalHttpPort,hostPort:daprHttpPort.Value):containerBuilder.WithPortBinding(port:InternalHttpPort,assignRandomHostPort:true);
156
+
containerBuilder=daprGrpcPortis not null?containerBuilder.WithPortBinding(containerPort:InternalGrpcPort,hostPort:daprGrpcPort.Value):containerBuilder.WithPortBinding(port:InternalGrpcPort,assignRandomHostPort:true);
0 commit comments