Skip to content

Commit

Permalink
Build check (#237)
Browse files Browse the repository at this point in the history
Signed-off-by: HimajaDhanyamraju2 <[email protected]>
  • Loading branch information
HimajaDhanyamraju2 authored Feb 5, 2024
1 parent d817a3c commit 833d8f2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion consolidator/consolidator_service.bal
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ isolated function startConsolidator() returns error? {
kafka:ConsumerRecord[] records = check conn:websubEventConsumer->poll(config:POLLING_INTERVAL);
foreach kafka:ConsumerRecord currentRecord in records {
string lastPersistedData = check string:fromBytes(currentRecord.value);
log:printInfo("websub event received in consolidator",payload=lastPersistedData);
log:printInfo("Websub event received in consolidator",payload=lastPersistedData);
error? result = processPersistedData(lastPersistedData);
if result is error {
log:printError("Error occurred while processing received event ", 'error = result);
Expand Down

0 comments on commit 833d8f2

Please sign in to comment.