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
Expected behavior
A pull based consumer should be created for NATS jetstream with the filter_subjects values.
Observed behavior
The consumer is created but filter_subjects is empty
nats consumer info
? Select a Stream test-stream2
? Select a Consumer pull-sub
Information for Consumer test-stream2 > pull-sub created 2024-07-15T13:17:37-04:00
Configuration:
Name: pull-sub
Pull Mode: true
Deliver Policy: All
Ack Policy: Explicit
Ack Wait: 30.00s
Replay Policy: Instant
Max Ack Pending: 1,000
Max Waiting Pulls: 512
State:
Last Delivered Message: Consumer sequence: 0 Stream sequence: 0
Acknowledgment Floor: Consumer sequence: 0 Stream sequence: 0
Outstanding Acks: 0 out of maximum 1,000
Redelivered Messages: 0
Unprocessed Messages: 0
Waiting Pulls: 0 of maximum 512
For comparison, here's the same configuration output, but with pull_sub=False:
❯ nats consumer info
? Select a Stream test-stream2
? Select a Consumer push-sub
Information for Consumer test-stream2 > push-sub created 2024-07-15T13:18:19-04:00
Configuration:
Durable Name: push-sub
Delivery Subject: _INBOX.zyOnP02Ci3Gc8BtZILE7Wa
Filter Subjects: b.a, b.b
Deliver Policy: All
Ack Policy: Explicit
Ack Wait: 30.00s
Replay Policy: Instant
Max Ack Pending: 1,000
Flow Control: false
State:
Last Delivered Message: Consumer sequence: 0 Stream sequence: 0
Acknowledgment Floor: Consumer sequence: 0 Stream sequence: 0
Outstanding Acks: 0 out of maximum 1,000
Redelivered Messages: 0
Unprocessed Messages: 0
Active Interest: Active
Environment
Running FastStream 0.5.14 with CPython 3.12.2 on Darwin
Additional context
It looks like #1519 only added config passing into the push subscriber _create_subscription functions, not the pull ones, which only provide extra_options.
The text was updated successfully, but these errors were encountered:
Describe the bug
Provide a clear and concise description of the bug.
How to reproduce
Include source code:
Expected behavior
A pull based consumer should be created for NATS jetstream with the filter_subjects values.
Observed behavior
The consumer is created but filter_subjects is empty
For comparison, here's the same configuration output, but with
pull_sub=False
:Environment
Additional context
It looks like #1519 only added
config
passing into the push subscriber_create_subscription
functions, not the pull ones, which only provideextra_options
.The text was updated successfully, but these errors were encountered: