There is currently no output if there are no consumer groups.
Expected
Log a warning
How to reproduce
Fetch offsets from a topic without consumer groups.
#/usr/bin/env bash
set -eo pipefail
API_KEY=...
API_SECRET=...
CLUSTER=...
TOPICS=.
cargo build --release
target/release/bridge-cli fetch-source \
-b $CLUSTER \
-o "security.protocol=SASL_SSL" \
-o "sasl.mechanism=PLAIN" \
-o "sasl.username=$API_KEY" \
-o "sasl.password=$API_SECRET" \
-t TOPICS
There is currently no output if there are no consumer groups.
Expected
Log a warning
How to reproduce
Fetch offsets from a topic without consumer groups.