fix(nats): remove filter_subject from consumer config
Some checks failed
test / unit (push) Has been cancelled
test / integration (push) Has been cancelled
lint / lint (push) Has been cancelled
lint / lint (pull_request) Failing after 9m20s
test / unit (pull_request) Failing after 10m40s
test / integration (pull_request) Failing after 17m47s

This commit is contained in:
2026-05-14 23:29:45 +02:00
parent 16892007a3
commit a4377fe209

View File

@@ -121,7 +121,9 @@ impl MessageSource for NatsMessageSource {
CONSUMER_NAME, CONSUMER_NAME,
jetstream::consumer::pull::Config { jetstream::consumer::pull::Config {
durable_name: Some(CONSUMER_NAME.to_string()), durable_name: Some(CONSUMER_NAME.to_string()),
filter_subject: STREAM_SUBJECT.to_string(), // No filter_subject — consume everything from the stream.
// filter_subject matching the stream's own wildcard can be
// inconsistent across NATS server versions.
..Default::default() ..Default::default()
}, },
) )