Skip to content

Commit

Permalink
fix: dlq-consumer should default to auto-offset-reset earliest
Browse files Browse the repository at this point in the history
same as #5753 and #5772
and every other consumer at sentry now
  • Loading branch information
lynnagara committed May 10, 2024
1 parent 70964ee commit 4a8de2c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion snuba/cli/dlq_consumer.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
)
@click.option(
"--auto-offset-reset",
default="error",
default="earliest",
type=click.Choice(["error", "earliest", "latest"]),
help="Kafka consumer auto offset reset.",
)
Expand Down

0 comments on commit 4a8de2c

Please sign in to comment.