Skip to content

Commit

Permalink
Incorporate review suggestions
Browse files Browse the repository at this point in the history
  • Loading branch information
ayeshLK committed Dec 13, 2024
1 parent c2dc7c3 commit b794c43
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/kafka-hub/hub/modules/connections/connections.bal
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ public isolated function createMessageConsumer(string topicName, string groupNam

if offset is kafka:PartitionOffset {
kafka:Error? kafkaSeekErr = consumerEp->seek(offset);
if kafkaSeekErr is error {
if kafkaSeekErr is kafka:Error {
log:printError("Error occurred while assigning seeking partitions for the consumer", kafkaSeekErr);
return kafkaSeekErr;
}
Expand Down

0 comments on commit b794c43

Please sign in to comment.