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
Authority header in the Service-Service invocation request is set to “{daprappId}.{namespace}.svc.cluster.local” . The ask is how to get :authority header to be the same as resolved DNS name. ex: “{daprappId}.dapr”
the authority header that is being updated when the message is posted by the dapr sidecar of processor app is handled by GO. [[meta]: authority issues · Issue #4717 · grpc/grpc-go (github.com)] (grpc/grpc-go#4717) - This is an open issue on how GO/GRPC handles authority header and the scope for improvement.
The text was updated successfully, but these errors were encountered:
You can set the header with the grpc.WithAuthority option: https://pkg.go.dev/google.golang.org/grpc#WithAuthority.
As this is not (and should not be) configurable in Dapr, you'd need to make these changes to daprd here:
This issue has been automatically marked as stale because it has not had activity in the last 60 days. It will be closed in the next 7 days unless it is tagged (pinned, good first issue, help wanted or triaged/resolved) or other activity occurs. Thank you for your contributions.
This issue has been automatically closed because it has not had activity in the last 67 days. If this issue is still valid, please ping a maintainer and ask them to label it as pinned, good first issue, help wanted or triaged/resolved. Thank you for your contributions.
Authority header in the Service-Service invocation request is set to “{daprappId}.{namespace}.svc.cluster.local” . The ask is how to get :authority header to be the same as resolved DNS name. ex: “{daprappId}.dapr”
the authority header that is being updated when the message is posted by the dapr sidecar of processor app is handled by GO. [[meta]:
authority
issues · Issue #4717 · grpc/grpc-go (github.com)] (grpc/grpc-go#4717) - This is an open issue on how GO/GRPC handles authority header and the scope for improvement.The text was updated successfully, but these errors were encountered: