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
With the changes introduced via restatedev/restate#1180, the ingress won't immediately learn about a newly registered service since the information needs to be propagated. To solve this problem, we can let the RestateDeployer wait until the health check returns serving for the registered services.
The text was updated successfully, but these errors were encountered:
This commit makes the RestateDeployer wait for the availability of registered
services at the ingress. The deployer checks whether the ingress is serving
the registered services via calling grpc.health.v1.Health/Check and checking
that the response contains status = SERVING.
This fixesrestatedev#266.
This commit makes the RestateDeployer wait for the availability of registered
services at the ingress. The deployer checks whether the ingress is serving
the registered services via calling grpc.health.v1.Health/Check and checking
that the response contains status = SERVING.
This fixesrestatedev#266.
With the changes introduced via restatedev/restate#1180, the ingress won't immediately learn about a newly registered service since the information needs to be propagated. To solve this problem, we can let the
RestateDeployer
wait until the health check returns serving for the registered services.The text was updated successfully, but these errors were encountered: