Forum Discussion
jhb
May 15, 2025Copper Contributor
Container App - Dapr - Service Bus
Our app is running as Dapr enabled Container App in an Container Apps Environment using Dapr pubsub component for Service Bus messages. Our Service Bus is on the Standard plan without VNET integratio...
- May 16, 2025
Setting the metadata useIPv4=true did not work. The request did not even reach the Service Bus with this setting.
So I will go with the routing rule solution.
Kidd_Ip
May 16, 2025MVP
Service Bus firewall only supports IPv4, but Dapr is defaulting to IPv6, you need a way to force Dapr to use IPv4 explicitly:
metadata:
- name: useIPv4
value: "true"
jhb
May 16, 2025Copper Contributor
Setting the metadata useIPv4=true did not work. The request did not even reach the Service Bus with this setting.
So I will go with the routing rule solution.