Skip to content

Commit

Permalink
Merge pull request #312 from cardanoapi/fix/api-status-page-kafka
Browse files Browse the repository at this point in the history
fix: fix consumer-group name for kafka health check
  • Loading branch information
Sital999 authored Jan 17, 2025
2 parents ad79e27 + a333566 commit 2f7055f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/backend/app/services/kafka_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def __init__(
self.consumer = AIOKafkaConsumer(
api_settings.getKafkaTopicPrefix() + "-triggers",
bootstrap_servers=settings.KAFKA_BROKERS,
group_id="heartbeat-check-group",
group_id=f"{api_settings.getKafkaTopicPrefix()}-heartbeat-check-group",
)

async def start(self):
Expand Down

0 comments on commit 2f7055f

Please sign in to comment.