-
Notifications
You must be signed in to change notification settings - Fork 528
Closed
Labels
Description
Expected Behavior
Dapr's Azure Service Bus binding should be able to connect to the ASB emulator.
Actual Behavior
Dapr reports that it is unable to subscribe to the ASB emulator topics.
WARN[0031] failed to subscribe to topics: failed to subscribe to topic topic-one: could not get topic topic-one: Get "https://localhost:5672/topic-one?api-version=2021-05": EOF failed to subscribe to topic topic-two: could not get topic topic-two: Get "https://localhost:5672/topic-two?api-version=2021-05": EOF
Steps to Reproduce the Problem
- Setup ASB emulator using docker
- Configure Dapr to connect to the emulator
apiVersion: dapr.io/v1alpha1
kind: Component
metadata:
name: example-pub-sub
spec:
type: pubsub.azure.servicebus.topics
version: v1
metadata:
- name: connectionString
value: "Endpoint=sb://localhost:5672;SharedAccessKeyName=RootManageSharedAccessKey;SharedAccessKey=SAS_KEY_VALUE;UseDevelopmentEmulator=true;"
Dapr runtime version: 1.14.4