I enabled the gRPC protocol on one of my container apps & now service invocation is failing. I'm guessing I'm missing another step? ♂️
az containerapp dapr enable --name blah
--resource-group blah
--dapr-app-protocol grpc
fail: Microsoft.AspNetCore.Server.Kestrel[13]
Connection id "0HMI4QJ3KEQS9", Request id "0HMI4QJ3KEQS9:00000002": An unhandled exception was thrown by the application.
Dapr.Client.InvocationException: An exception occurred while invoking method: 'blah' on app-id: 'blah'
---> System.Net.Http.HttpRequestException: Response status code does not indicate success: 503 (Service Unavailable). at System.Net.Http.HttpResponseMessage.EnsureSuccessStatusCode()
at Dapr.Client.DaprClientGrpc.InvokeMethodAsync[TResponse](HttpRequestMessage request, CancellationToken cancellationToken)
...