-
Notifications
You must be signed in to change notification settings - Fork 552
Open
Labels
kind/bugSomething isn't workingSomething isn't working
Description
Expected Behavior
When the following is set on a pulsar pubsub component:
- name: subscribeMode
value: "non_durable"
I expect the created subscrption to be non-durable.
Actual Behavior
The created subscrption is duarable.
Steps to Reproduce the Problem
Create a pulsar.pubsub component like the following:
apiVersion: dapr.io/v1alpha1
kind: Component
metadata:
name: pulsar-pubsub
spec:
type: pubsub.pulsar
version: v1
metadata:
- name: host
value: "localhost:6650"
- name: enableTLS
value: "false"
- name: tenant
value: "public"
- name: consumerID
value: "channel1"
- name: namespace
value: "default"
- name: persistent
value: "true"
- name: disableBatching
value: "false"
- name: receiverQueueSize
value: "1000"
- name: subscribeMode
value: "non_durable"
Create a subscription using that component. Veryify that the created subsciption Is Not Durable.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
kind/bugSomething isn't workingSomething isn't working